-
-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (48 loc) · 1.49 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
name: PR testing
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
tools-version: [[6, 5.0], [7, 6.0]]
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/[email protected]
- name: Install pnpm
uses: pnpm/[email protected]
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Start Redis ${{ matrix.tools-version[0] }}
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.tools-version[0] }}
- name: Start MongoDB ${{ matrix.tools-version[1] }}
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.tools-version[1] }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm exec nx affected --target=build --parallel
- name: Lint
run: pnpm exec nx affected --target=lint --parallel
- name: Test
run: pnpm exec nx affected --target=test --parallel --coverage
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}