Skip to content

Commit

Permalink
chore: Update Node and add workaround for Node issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmfern committed Feb 3, 2025
1 parent bc5a51e commit c8a33c7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bump-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Setup Node.js 20
- name: Setup Node.js 22
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- name: Enable Corepack
id: pnpm-setup
run: |
corepack enable
corepack prepare pnpm@latest --activate
corepack prepare pnpm@9.15.0 --activate
pnpm config set script-shell "/usr/bin/bash"
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/bump-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Setup Node.js 20
- name: Setup Node.js 22
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- name: Enable Corepack
id: pnpm-setup
run: |
corepack enable
corepack prepare pnpm@latest --activate
corepack prepare pnpm@9.15.0 --activate
pnpm config set script-shell "/usr/bin/bash"
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
lint:
runs-on: buildjet-4vcpu-ubuntu-2204
container:
image: node:18
image: node:22
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -17,7 +17,7 @@ jobs:
id: pnpm-setup
run: |
corepack enable
corepack prepare pnpm@latest --activate
corepack prepare pnpm@9.15.0 --activate
pnpm config set script-shell "/usr/bin/bash"
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
Expand All @@ -41,7 +41,7 @@ jobs:
test:
runs-on: buildjet-4vcpu-ubuntu-2204
container:
image: node:18
image: node:22
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -50,7 +50,7 @@ jobs:
id: pnpm-setup
run: |
corepack enable
corepack prepare pnpm@latest --activate
corepack prepare pnpm@9.15.0 --activate
pnpm config set script-shell "/usr/bin/bash"
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
Expand All @@ -74,7 +74,7 @@ jobs:
build:
runs-on: buildjet-4vcpu-ubuntu-2204
container:
image: node:18
image: node:22
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -83,7 +83,7 @@ jobs:
id: pnpm-setup
run: |
corepack enable
corepack prepare pnpm@latest --activate
corepack prepare pnpm@9.15.0 --activate
pnpm config set script-shell "/usr/bin/bash"
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
Expand Down

1 comment on commit c8a33c7

@vercel
Copy link

@vercel vercel bot commented on c8a33c7 Feb 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

react-email-demo – ./apps/demo

react-email-demo-resend.vercel.app
react-email-demo.vercel.app
react-email-demo-git-main-resend.vercel.app
demo.react.email

Please sign in to comment.