Skip to content

Commit

Permalink
Add Check for Node 16 (#730)
Browse files Browse the repository at this point in the history
  • Loading branch information
Naturalclar committed Jun 24, 2023
1 parent af5b64c commit c532ac1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ on: pull_request

jobs:
lint:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14]
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
flow:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14]
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -45,10 +45,10 @@ jobs:
- name: Flow Checks
run: yarn flow check
tsc:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14]
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -66,11 +66,11 @@ jobs:
- name: TypeScript type check
run: yarn tsc
android:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14]
java-version: [11]
node-version: [14, 16]
java-version: [11]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
node-version: [14]
node-version: [14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -117,8 +117,8 @@ jobs:
- name: Install Example
run: cd example && yarn
- name: Build ios
run: cd example && yarn build:ios
run: cd example && yarn build:ios
- name: Pod install
run: cd example && pod install --project-directory=ios
- name: Run ios app
run: cd example && yarn ios
run: cd example && yarn ios

0 comments on commit c532ac1

Please sign in to comment.