File tree Expand file tree Collapse file tree 1 file changed +13
-22
lines changed Expand file tree Collapse file tree 1 file changed +13
-22
lines changed Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
test :
13
- name : ${{ matrix.platform }}
14
- runs-on : ${{ matrix.platform }}
15
-
16
- strategy :
17
- fail-fast : false
18
- matrix :
19
- platform :
20
- - ubuntu-latest
21
- - macos-latest
22
- - windows-latest
23
- node :
24
- - 16
13
+ name : Test
14
+ runs-on : ubuntu-latest
25
15
26
16
steps :
27
- - name : Set git to use LF
28
- run : |
29
- git config --global core.autocrlf false
30
- git config --global core.eol lf
17
+ - name : Clone Repository
18
+ uses : actions/checkout@v3
31
19
32
- - uses : actions/checkout@v2
33
- - name : Use Node.js ${{ matrix.node }}
34
- uses : actions/setup-node@v2
20
+ - name : Setup Node.js
21
+ uses : actions/setup-node@v3
35
22
with :
36
- node-version : ${{ matrix.node }}
37
- - run : npm ci
38
- - run : npm test
23
+ node-version : ' 16'
24
+
25
+ - name : Install Dependencies
26
+ run : npm ci
27
+
28
+ - name : Run Tests
29
+ run : npm test
39
30
env :
40
31
CI : true
You can’t perform that action at this time.
0 commit comments