Skip to content

feat: update dompurify types #1414

feat: update dompurify types

feat: update dompurify types #1414

Workflow file for this run

name: ⚙️ CI
on:
pull_request:
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
with:
persist-credentials: false
- uses: taiga-family/ci/actions/setup/variables@v1.93.5
- uses: taiga-family/ci/actions/setup/node@v1.93.5
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npm run prettier -- --write
npm run stylelint -- --fix
npm run lint -- --fix
else
npm run prettier -- --check
npm run stylelint
npm run lint
fi
- run: npm run test
- run: npm run build:library
- run: npm run build:demo
- uses: taiga-family/ci/actions/auto/push@v1.93.5
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true