forked from bitauth/libauth
-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (49 loc) · 1.31 KB
/
ci.yaml
File metadata and controls
52 lines (49 loc) · 1.31 KB
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
name: Lint, Build, and Test Libauth
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18]
name: Test Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install --immutable --immutable-cache
- run: yarn test
build-and-test-with-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
name: Test Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install --immutable --immutable-cache
- run: yarn test
- name: Upload test coverage
uses: codecov/codecov-action@v3
check-yarn-cache:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- run: yarn install --immutable --immutable-cache --check-cache