use corepack
ci / build (push) Failing after 5m0s
Details
ci / build (push) Failing after 5m0s
Details
This commit is contained in:
parent
0a7d99f322
commit
ecca45c7ca
|
@ -12,13 +12,20 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
environment: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
name: Check out code
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
name: Test the code
|
||||
- name: Enable Corepack
|
||||
run: corepack enable
|
||||
|
||||
- name: Setup node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20.x'
|
||||
cache: 'pnpm'
|
||||
|
||||
- run: pnpm install --recursive
|
||||
- run: pnpm test --filter scout --filter link2cid
|
||||
- name: Test scout
|
||||
run: pnpm install --filter scout
|
||||
|
||||
- name: Test link2cid
|
||||
run: pnpm test --filter link2cid
|
Loading…
Reference in New Issue