Skip to content
Merged
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
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