Skip to content

Commit

Permalink
fix(test): update run environment
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Apr 21, 2024
1 parent 510f74b commit ece3145
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on: [push, pull_request]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: macos-latest
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: 18
- run: npm install
- run: npm run lint

Expand All @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: 18
- run: npm install
- run: npm run lint

Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: 18
- run: npm install
- run: npm run verify:web

Expand All @@ -48,16 +48,16 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: 18
- run: npm install
# - run: npm run verify:android

verify-ios:
runs-on: macos-latest
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: 18
- run: npm install
- run: npm run verify:ios
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
},
"files": [
"android/src/main/",
Expand Down

0 comments on commit ece3145

Please sign in to comment.