-
Notifications
You must be signed in to change notification settings - Fork 5
33 lines (31 loc) · 1.04 KB
/
nodejs.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
name: 'NodeJS'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test_nodejs:
strategy:
matrix:
node: [16]
name: ${{ matrix.node }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: echo "::set-output name=dir::$(yarn cache dir)"
id: yarn-cache-dir
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: yarn-cache-${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-cache-${{ matrix.node }}-
- run: bash ./scripts/ci/setup/default.sh
- run: bash ./scripts/ci/jobs/test_nodejs.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}