-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (41 loc) · 1.07 KB
/
test.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
name: "Build & Test"
on:
push:
branches: [ v1.x ]
paths-ignore:
- '**/*.md'
# - '.github'
pull_request:
branches: [ v1.x ]
paths-ignore:
- '**/*.md'
# - '.github'
env:
pnpm_version: 7
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16, 18]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: ${{ env.pnpm_version }}
- name: Install dependencies
run: pnpm install
- run: npx nx run nammatham:build
- run: npx nx run nammatham:typecheck
- run: npx nx run nammatham:test
- run: npx nx run nammatham:test:coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
name: ${{ matrix.os }}/${{ matrix.node-version }}