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
6 changes: 4 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: ['20.6.1', '24']
node-version: ['22.13.0', '24']

steps:
- name: Checkout
Expand All @@ -24,12 +24,14 @@ jobs:
private-key: ${{ secrets.TOKENS_PRIVATE_KEY }}
app-id: ${{ secrets.TOKENS_APP_ID }}

- name: Install pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9

- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- run: corepack enable
- name: Install Deno
uses: denoland/setup-deno@v2
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- run: corepack enable pnpm
- name: Install pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
- name: Node.js
uses: actions/setup-node@v4
with:
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,11 @@ jobs:
# Should match the `DENO_VERSION_RANGE` from https://github.com/netlify/build/blob/8ff162649f76a9586dd7593198c0fa798dac3629/packages/edge-bundler/node/bridge.ts#L22
deno-version: v2.4.2
if: ${{ steps.release.outputs.releases_created }}
- run: corepack enable
- name: Install pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
Comment thread
serhalp marked this conversation as resolved.
Comment thread
serhalp marked this conversation as resolved.
- name: Install dependencies
run: pnpm install
- run: pnpm build:packages
if: ${{ steps.release.outputs.releases_created }}
- name: Authenticate pnpm
run: pnpm config set '//registry.npmjs.org/:_authToken' "${NPM_AUTH_TOKEN}"
if: ${{ steps.release.outputs.releases_created }}
env:
NPM_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: pnpm -r publish --filter "@netlify/*"
env:
NPM_CONFIG_PROVENANCE: true
- run: pnpm -r publish --filter "@netlify/*" --provenance
if: ${{ steps.release.outputs.releases_created }}
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
- name: Installing Node.js
uses: actions/setup-node@v4
with:
node-version: 24
- run: corepack enable
- name: Install Deno
uses: denoland/setup-deno@v2
with:
Expand All @@ -40,15 +41,16 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: ['20.6.1', '24']
node-version: ['22.13.0', '24']

steps:
- uses: actions/checkout@v4
Comment thread
serhalp marked this conversation as resolved.
- name: Install pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
- name: Installing Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- name: Install Deno
uses: denoland/setup-deno@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@
"engines": {
"node": ">=20.6.1"
},
"packageManager": "pnpm@8.15.9+sha256.daa27a0b541bc635323ff96c2ded995467ff9fe6d69ff67021558aa9ad9dcc36"
"packageManager": "pnpm@11.7.0+sha512.19cc852c120c7125760f2443ee6be0ca5b40f9f50598de1a09a1f177503e010e57c23c77646e01e761de59bf874fb22a3398c33ab9691fc13eb946b6f0f4d620"
Comment thread
serhalp marked this conversation as resolved.
}
Loading
Loading