-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (36 loc) · 892 Bytes
/
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
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
# node-version: 21.1.0
node-version-file: 'package.json'
- name: Restore Cache
id: cache-node-modules
uses: actions/cache@v4
with:
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
path: node_modules
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Test
run: npm run test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage/lcov.info