Skip to content

chore(deps): update dependency cypress to v13.15.0 #99

chore(deps): update dependency cypress to v13.15.0

chore(deps): update dependency cypress to v13.15.0 #99

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.0
with:
persist-credentials: false
- uses: taiga-family/ci/actions/setup/node@v1.89.0
- 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: npx nx run-many -t build --all
- run: npx nx run-many -t test --all
- uses: codecov/codecov-action@v4
- uses: taiga-family/ci/actions/auto/push@v1.89.0
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true