Skip to content

Commit

Permalink
internal: Use node 18 for test (#2033)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntucker committed May 31, 2022
1 parent 6b3dad9 commit 0fb74f8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
setup:
docker: &docker
# specify the version you desire here
- image: circleci/node:16
- image: cimg/node:18.2
resource_class: large
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fetch-depth: 1
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
- name: Run benchmark
run: yarn install && NODE_ENV=production BROWSERSLIST_ENV=modern yarn lerna run --scope @rest-hooks/core --include-dependencies build && yarn workspace benchmark start | tee output.txt

Expand Down
10 changes: 5 additions & 5 deletions examples/github-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"lint": "eslint src --ext .ts,.tsx",
"format": "npm run lint --fix",
"test:type": "tsc",
"start": "webpack serve --mode=development",
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack serve --mode=development",
"start:prod": "serve dist",
"build:browser": "webpack --mode=production",
"build:analyze": "webpack --mode=production --env analyze",
"build:profile": "webpack --mode=production --env profile",
"test:pkg": "webpack --env check=nobuild"
"build:browser": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production",
"build:analyze": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production --env analyze",
"build:profile": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production --env profile",
"test:pkg": "NODE_OPTIONS=--openssl-legacy-provider webpack --env check=nobuild"
},
"keywords": [
"anansi"
Expand Down
10 changes: 5 additions & 5 deletions examples/todo-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"lint": "eslint src --ext .ts,.tsx",
"format": "npm run lint --fix",
"test:type": "tsc",
"start": "webpack serve --mode=development",
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack serve --mode=development",
"start:prod": "serve dist",
"build:browser": "webpack --mode=production",
"build:analyze": "webpack --mode=production --env analyze",
"build:profile": "webpack --mode=production --env profile",
"test:pkg": "webpack --env check=nobuild"
"build:browser": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production",
"build:analyze": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production --env analyze",
"build:profile": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production --env profile",
"test:pkg": "NODE_OPTIONS=--openssl-legacy-provider webpack --env check=nobuild"
},
"keywords": [
"anansi"
Expand Down

0 comments on commit 0fb74f8

Please sign in to comment.