Skip to content

Commit

Permalink
docs(examples): update examples and docs to use node 18 (#5300)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulkar committed Jun 15, 2023
1 parent d461eca commit 7d897aa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/pages/repo/docs/ci/github-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Create file called `.github/workflows/ci.yml` in your repository with the follow
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'npm'

- name: Install dependencies
Expand Down Expand Up @@ -117,7 +117,7 @@ Create file called `.github/workflows/ci.yml` in your repository with the follow
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'yarn'

- name: Install dependencies
Expand Down Expand Up @@ -164,7 +164,7 @@ Create file called `.github/workflows/ci.yml` in your repository with the follow
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: 'pnpm'

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions examples/design-system/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v2

- name: Setup Node.js 16.x
- name: Setup Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18

- name: Install Dependencies
run: yarn
Expand Down
4 changes: 2 additions & 2 deletions examples/with-changesets/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
with:
version: 7

- name: Setup Node.js 16.x
- name: Setup Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x

- name: Install Dependencies
run: pnpm i
Expand Down

2 comments on commit 7d897aa

@vercel
Copy link

@vercel vercel bot commented on 7d897aa Jun 15, 2023

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:

examples-designsystem-docs – ./examples/design-system/apps/docs

turborepo-examples-designsystem-docs.vercel.sh
examples-designsystem-docs-git-main.vercel.sh
examples-designsystem-docs.vercel.sh

@vercel
Copy link

@vercel vercel bot commented on 7d897aa Jun 15, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.