File tree Expand file tree Collapse file tree 1 file changed +9
-12
lines changed
Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,16 @@ jobs:
1010 JOBS : 1 # See https://git.io/vdao3 for details
1111
1212 steps :
13- - uses : actions/checkout@v2
14-
15- - uses : actions/setup-node@v1
16- with :
17- node-version : 12.22
18-
19- - uses : actions/cache@v1
20- id : npm-cache
13+ - uses : actions/checkout@v4
14+ - uses : actions/setup-node@v4
2115 with :
22- path : ~/.npm
23- key : ${{ runner.os }}-npm-${{ hashFiles(format('{0}/package-lock.json', github.workspace)) }}
24- restore-keys : |
25- ${{ runner.os }}-npm-
16+ node-version-file : package.json
17+ cache : npm
2618 - run : make dependencies
2719 - run : make verify
2820 - run : make test
21+ - run : make package-chrome
22+ - run : actions/upload-artifact@v4
23+ with :
24+ name : chrome-extension
25+ path : dist-packages/chrome.zip
You can’t perform that action at this time.
0 commit comments