Skip to content

Commit ed94d44

Browse files
committed
Migrate CI to pnpm.
1 parent afef0a2 commit ed94d44

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/browser-extension.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,17 @@ jobs:
1313
- uses: actions/checkout@v5
1414
with:
1515
submodules: recursive
16+
- uses: pnpm/action-setup@v4
17+
with:
18+
version: 10
1619
- uses: actions/setup-node@v5
1720
with:
1821
node-version-file: '.nvmrc'
19-
cache: 'npm'
20-
cache-dependency-path: package-lock.json
21-
- run: npm ci --ignore-scripts
22-
- run: npm install @rollup/rollup-linux-x64-gnu @esbuild/linux-x64
23-
- run: npm run postinstall --workspace=gitcasso
24-
- run: npm run build --workspace=overtype
25-
- run: npm run biome
22+
cache: 'pnpm'
23+
- run: pnpm install --frozen-lockfile
24+
- run: pnpm run biome
2625
working-directory: browser-extension
27-
- run: npm test
26+
- run: pnpm test
2827
working-directory: browser-extension
29-
- run: npm run compile
28+
- run: pnpm run compile
3029
working-directory: browser-extension

0 commit comments

Comments
 (0)