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:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 8
|
||||
- name: Use Node.js 18
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
cache: 'npm'
|
||||
cache-dependency-path: '**/package-lock.json'
|
||||
cache: 'pnpm'
|
||||
cache-dependency-path: '**/pnpm-lock.yaml'
|
||||
- name: Install
|
||||
run: npm ci
|
||||
run: pnpm i
|
||||
- name: Build
|
||||
run: npm run build --if-present
|
||||
run: pnpm build
|
||||
- name: Tests
|
||||
run: npm test
|
||||
run: pnpm test
|
||||
|
Loading…
x
Reference in New Issue
Block a user