Skip to content

Commit

Permalink
chore: align all github workflows to use node v20 (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaroneee authored and Irillit committed Feb 5, 2025
1 parent 928a6bc commit 17ffe53
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run build script
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run build script
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/formatter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
- name: Set up node v21
- name: Set up node v20
uses: actions/setup-node@v4
with:
node-version: 21.x
cache: 'pnpm'
node-version: 20.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Check formatting
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
- name: Set up node v21
- name: Set up node v20
uses: actions/setup-node@v4
with:
node-version: 21.x
cache: 'pnpm'
node-version: 20.x
cache: pnpm
- name: Install dependencies and build
run: pnpm build:genkit-tools
- name: Run tests
Expand Down

0 comments on commit 17ffe53

Please sign in to comment.