Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change node version on CI #185

Merged
merged 4 commits into from
Jun 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ on: push

jobs:
lint:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12]
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -24,10 +24,10 @@ jobs:
- name: ESLint Checks
run: yarn lint
tsc:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12]
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -45,10 +45,10 @@ jobs:
- name: TypeScript type check
run: yarn type-check
android:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12]
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -69,7 +69,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
node-version: [12]
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -92,7 +92,7 @@ jobs:
# runs-on: windows-latest
# strategy:
# matrix:
# node-version: [12]
# node-version: [14,16]
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require_relative '../../node_modules/react-native/scripts/react_native_pods'
require_relative '../../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '10.0'
platform :ios, '11.0'

target 'example' do
config = use_native_modules!
Expand Down
Loading