migrated to pnpm
This commit is contained in:
parent
1430f3685c
commit
dd6b493830
13
.github/workflows/node.js.yml
vendored
13
.github/workflows/node.js.yml
vendored
@ -20,15 +20,18 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
- uses: pnpm/action-setup@v2
|
||||||
|
with:
|
||||||
|
version: 8
|
||||||
- name: Use Node.js 18
|
- name: Use Node.js 18
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 18
|
||||||
cache: 'npm'
|
cache: 'pnpm'
|
||||||
cache-dependency-path: '**/package-lock.json'
|
cache-dependency-path: '**/pnpm-lock.yaml'
|
||||||
- name: Install
|
- name: Install
|
||||||
run: npm ci
|
run: pnpm i
|
||||||
- name: Build
|
- name: Build
|
||||||
run: npm run build --if-present
|
run: pnpm build
|
||||||
- name: Tests
|
- name: Tests
|
||||||
run: npm test
|
run: pnpm test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user