-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 927 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CI
on:
pull_request:
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.1
with:
persist-credentials: false
- uses: taiga-family/ci/actions/setup/node@v1.91.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.91.0
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true