Skip to content

Commit

Permalink
⬆️ Upgrade node to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Jun 8, 2023
1 parent 51fa1a9 commit 042af6f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
jobs:
checkout_code:
docker:
- image: circleci/node:10
- image: circleci/node:16
steps:
- checkout
- persist_to_workspace:
root: .
paths: .
analyse_js:
docker:
- image: circleci/node:10
- image: circleci/node:16
steps:
- attach_workspace:
at: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand All @@ -42,7 +42,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/production_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Set release version and build number env
id: version-format
run: |
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "likecoin-app",
"version": "0.31.3",
"private": true,
"engine": {
"node": ">=16"
},
"scripts": {
"start": "react-native start",
"start:clean": "react-native start --reset-cache",
Expand Down

0 comments on commit 042af6f

Please sign in to comment.