Skip to content

Commit

Permalink
Merge b7d5176 into e6532b0
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulkar committed May 20, 2023
2 parents e6532b0 + b7d5176 commit ca22dfe
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: pnpm

- name: Configure corepack
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: ${{ matrix.manager }}
cache-dependency-path: package.json

Expand Down Expand Up @@ -794,8 +794,6 @@ jobs:

- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-version: 16

- name: Build benchmarks for tests
timeout-minutes: 120
Expand Down Expand Up @@ -860,8 +858,6 @@ jobs:

- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-version: 16

- name: Build benchmarks for tests
timeout-minutes: 120
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v18
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@
"htmlWhitespaceSensitivity": "strict"
},
"engines": {
"node": "16.x"
"node": "18.x"
}
}
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 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
},
"packageManager": "pnpm@7.18.2",
"engines": {
"node": "16.x",
"node": "18.x",
"pnpm": "7"
}
}

0 comments on commit ca22dfe

Please sign in to comment.