-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (84 loc) · 2.41 KB
/
verify-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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
format-and-lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run Biome
run: npx biome ci .
- name: Run typecheck
run: npm run typecheck
license-audit:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Install lac
run: npm i -g @brainhubeu/lac
- name: Run audit
#Add `--bail 1` flag when it will be available on npm
run: lac --default-config
test:
strategy:
matrix:
node: [18, 20, 22]
os: [ubuntu-latest, macos-latest]
yarn: [1.22.22, 3.x]
pnpm: [7.30.0, 8.6.0]
runs-on: ${{ matrix.os }}
needs: format-and-lint
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Enable corepack
run: corepack enable
- name: Set Yarn version ${{ matrix.yarn }}
run: |
yarn set version ${{ matrix.yarn }}
- name: Install PNPM ${{ matrix.pnpm }}
run: |
npm install --global pnpm@${{ matrix.pnpm }}
- name: Install dependencies
run: |
if [ -f "yarn.lock" ]; then
yarn install
elif [ -f "pnpm-lock.yaml" ]; then
pnpm install
else
npm ci
fi
- name: Build
run: npm run build
- name: Run tests and generate coverage
run: npm run test:coverage
- name: Run e2e tests
run: npm run test:e2e --prefix=test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # Required for private repos
# todo: use lcov-result-merge to combine more results
files: ./packages/core/coverage/lcov.info
flags: unit
fail_ci_if_error: true