Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: 22
- run: corepack yarn
- run: corepack yarn install --immutable
- run: corepack yarn run pack
- uses: actions/upload-artifact@v7
with:
Expand All @@ -114,7 +114,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: 24
- run: corepack yarn
- run: corepack yarn install --immutable
- run: corepack yarn verify

verify-full:
Expand All @@ -125,7 +125,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: 24
- run: corepack yarn
- run: corepack yarn install --immutable
- run: corepack yarn verify:full

release-dry-run:
Expand All @@ -141,7 +141,7 @@ jobs:
node-version: 22
registry-url: https://registry.npmjs.org
- run: npm install -g npm@11.5.1
- run: corepack yarn
- run: corepack yarn install --immutable
- run: corepack yarn tsc:utils
- run: corepack yarn tsc:zod
- run: corepack yarn tsc:node
Expand All @@ -162,7 +162,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- run: corepack yarn
- run: corepack yarn install --immutable
# Root unit tests execute TypeScript scripts via Node's strip-types support.
# Keep those on Node 24+; Node 20/22 only run @transloadit/node unit tests.
- run: corepack yarn test:unit
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: 24
- run: corepack yarn
- run: corepack yarn install --immutable
- name: Download cloudflared
run: |
curl -fsSL --retry 5 --retry-all-errors --retry-delay 2 -o cloudflared-linux-amd64 https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
node-version: 22
registry-url: https://registry.npmjs.org
- run: npm install -g npm@11.5.1
- run: corepack yarn
- run: corepack yarn
- run: corepack yarn install --immutable
- run: corepack yarn install --immutable
- run: corepack yarn tsc:utils
- run: corepack yarn tsc:zod
- run: corepack yarn tsc:node
Expand Down
2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ packageExtensions:
dependencies:
"@emnapi/core": "1.10.0"
"@emnapi/runtime": "1.10.0"

npmMinimalAgeGate: 2880