Skip to content

Commit 055b3a8

Browse files
chore: update nodejs version (#284)
1 parent 72284d4 commit 055b3a8

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ lib/
33
dist/
44
example/
55
packages/**/dist/
6+
packages/**/web-build/
67
submodules/
78
packages/**/coverage/
89
packages/hd-transport/scripts/protobuf-patches/

.github/workflows/build-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
node-version: [16.x]
22+
node-version: [18.x]
2323

2424
steps:
2525
- uses: actions/checkout@v3

.github/workflows/gh-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
- name: Setup Environment
1313
uses: actions/setup-node@v2
1414
with:
15-
node-version: '16.x'
15+
node-version: '18.x'
1616
registry-url: 'https://registry.npmjs.org'
1717
- name: Install Package
1818
run: |
19-
npm i -g expo-cli@6.0.5 && yarn
19+
yarn
2020
yarn bootstrap
2121
- name: Build Target
2222
run: |
2323
yarn build
2424
cd packages/connect-examples/expo-example
25-
npx expo build:web
25+
npx expo export:web
2626
2727
- name: Deploy Github Pages
2828
uses: peaceiris/actions-gh-pages@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
node-version: [16.x]
22+
node-version: [18.x]
2323

2424
steps:
2525
- uses: actions/checkout@v3

.github/workflows/package-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '16.x'
12+
node-version: '18.x'
1313
registry-url: 'https://registry.npmjs.org'
1414
- name: Install Package
1515
run: |

.github/workflows/release-web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup Environment
1414
uses: actions/setup-node@v2
1515
with:
16-
node-version: '16.x'
16+
node-version: '18.x'
1717
registry-url: 'https://npm.pkg.github.com'
1818

1919
- name: Install Package

0 commit comments

Comments
 (0)