Skip to content

chore: update dependency parse5 to >=7.2.0 #25762

chore: update dependency parse5 to >=7.2.0

chore: update dependency parse5 to >=7.2.0 #25762

Workflow file for this run

name: ⚙️ Lint
on:
pull_request:
push:
branches: [main]
jobs:
lint:
name: Lint
if: ${{ !contains(github.head_ref, 'release/') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.1
with:
persist-credentials: false
- uses: taiga-family/ci/actions/setup/variables@v1.93.2
- uses: taiga-family/ci/actions/setup/node@v1.93.2
- run: npm run typecheck
- run: npm run cspell -- --no-progress
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npm run stylelint -- --fix
npm run prettier -- --write
npm run lint -- --fix
else
npm run stylelint
npm run prettier -- --check
npm run lint
fi
- uses: taiga-family/ci/actions/auto/push@v1.93.2
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true