File tree 6 files changed +21286
-6688
lines changed
6 files changed +21286
-6688
lines changed Original file line number Diff line number Diff line change @@ -14,28 +14,16 @@ jobs:
14
14
- name : Check out Git repository
15
15
uses : actions/checkout@v2
16
16
17
- - name : Install Node.js, NPM and Yarn
17
+ - name : Install Node.js, NPM
18
18
uses : actions/setup-node@v1
19
19
with :
20
- node-version : 14
20
+ node-version : 16
21
21
22
- - name : Get yarn cache directory path
23
- id : yarn-cache-dir-path
24
- run : echo "::set-output name=dir::$(yarn cache dir)"
22
+ - name : npm install
23
+ run : npm ci
25
24
26
- - uses : actions/cache@v2
27
- id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
28
- with :
29
- path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
30
- key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
31
- restore-keys : |
32
- ${{ runner.os }}-yarn-
33
-
34
- - name : yarn install
35
- run : yarn --frozen-lockfile
36
-
37
- - name : yarn test
25
+ - name : npm test
38
26
env :
39
27
CLIENT_ID : ${{ secrets.CLIENT_ID }}
40
28
CLIENT_SECRET : ${{ secrets.CLIENT_SECRET }}
41
- run : yarn test
29
+ run : npm test
Original file line number Diff line number Diff line change @@ -39,9 +39,6 @@ build/Release
39
39
# Dependency directory
40
40
node_modules
41
41
42
- # npm lockfile
43
- package-lock.json
44
-
45
42
# Compiled source
46
43
dist
47
44
.eslintcache
You can’t perform that action at this time.
0 commit comments