Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: stick node version to 18.x in ci #305

Merged
merged 1 commit into from
Nov 5, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/* ]
node-version: [ 18.x ]
steps:
- name: ⬇️ Checkout
id: checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*]
node-version: [ 18.x ]
steps:
- name: ⬇️ Checkout
id: checkout
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/* ]
node-version: [ 18.x ]
steps:
- name: ⬇️ Checkout
id: checkout
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/* ]
node-version: [ 18.x ]
steps:
- name: ⬇️ Checkout
id: checkout
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/* ]
node-version: [ 18.x ]
steps:
- name: ⬇️ Checkout
id: checkout
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/* ]
node-version: [ 18.x ]
steps:
- name: ⬇️ Checkout
id: checkout
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/* ]
node-version: [ 18.x ]
steps:
- name: ⬇️ Checkout
id: checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*]
node-version: [18.x]
pnpm-version: [8.15.7]
steps:
- name: ⬇️ Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ lts/* ]
node-version: [ 18.x ]
steps:
- name: ⬇️ Checkout
id: checkout
Expand Down
Loading