File tree Expand file tree Collapse file tree 2 files changed +32
-39
lines changed Expand file tree Collapse file tree 2 files changed +32
-39
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : run-tests
2
+ run-name : Installs project and runs tests
3
+ on : [ push, pull_request ]
4
+ jobs :
5
+ run-tests-nix :
6
+ runs-on : ubuntu-latest
7
+ strategy :
8
+ matrix :
9
+ node : [ 14, 16 ]
10
+ name : Run tests on Ubuntu with Node ${{ matrix.node }}
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
14
+ with :
15
+ node-version : ${{ matrix.node }}
16
+ cache : ' yarn'
17
+ - run : yarn install
18
+ - run : yarn test
19
+ run-tests-win :
20
+ runs-on : windows-latest
21
+ strategy :
22
+ matrix :
23
+ node : [ 14, 16 ]
24
+ name : Run tests on Windows with Node ${{ matrix.node }}
25
+ steps :
26
+ - uses : actions/checkout@v3
27
+ - uses : actions/setup-node@v3
28
+ with :
29
+ node-version : ${{ matrix.node }}
30
+ cache : ' yarn'
31
+ - run : yarn install
32
+ - run : yarn test
You can’t perform that action at this time.
0 commit comments