chore: update nx to v20.1.2 #2161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- 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 build | |
npm test | |
- uses: taiga-family/ci/actions/auto/[email protected] | |
with: | |
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |