Skip to content

Commit 11317f3

Browse files
committed
ci: make CI build the chrome package
1 parent 87d2369 commit 11317f3

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)