-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (55 loc) · 1.61 KB
/
pr.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: CI
env:
NX_BRANCH: ${{ github.event.number }}
NX_RUN_GROUP: ${{ github.run_id }}
CYPRESS_INSTALL_BINARY: 0
on:
pull_request:
push:
branches: [main, alpha]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npm run build
env:
NODE_OPTIONS: --openssl-legacy-provider
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npm run lint
- run: npm run prettier -- --check
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npm run test --coverage --coverageReporters lcov
- run: echo "::set-output name=projectMatrix::$(npx nx print-affected --target test --select tasks.target.project)"
id: set-project-matrix
- uses: actions/github-script@v7
id: parsed-project-matrix
env:
PROJECTS: '${{ steps.set-project-matrix.outputs.projectMatrix }}'
with:
script: |
return process.env.PROJECTS.split(',').map(p => './coverage/' + p.trim() + '/lcov.info').join(',');
- uses: codecov/codecov-action@v4
with:
files: ${{ steps.parsed-project-matrix.outputs.result }}
concurrency:
group: ci-${{ github.head_ref }}
cancel-in-progress: true