-
Notifications
You must be signed in to change notification settings - Fork 147
68 lines (55 loc) · 1.61 KB
/
verifications.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
name: Verifications
on:
workflow_call:
jobs:
code-validation:
name: 'Code Validation: ${{ matrix.validation-script }}'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
validation-script:
['lint', 'type-check', 'format:check', 'generate-all:check']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version-file: '.nvmrc'
- name: Install dependencies
run: pnpm install
- name: Run script
run: pnpm run ${{ matrix.validation-script }}
tests:
name: Tests (Node v${{ matrix.node }} - ESLint v${{ matrix.eslint }})
runs-on: ubuntu-latest
timeout-minutes: 3
strategy:
fail-fast: false
matrix:
node: [18.18.0, 18, 20.9.0, 20, 21.1.0, 21, 22, 23]
eslint: [8.57.0, 8, 9]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: ${{ matrix.node }}
- name: Install dependencies
run: pnpm install
- name: Install ESLint v${{ matrix.eslint }}
run: pnpm add eslint@${{ matrix.eslint }}
- name: Run tests
run: pnpm run test:ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}