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
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ jobs:
review:
name: Review
runs-on: ubuntu-latest
strategy:
matrix:
test-name: [lint, ts]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -17,14 +20,9 @@ jobs:
node-version: 16
cache: yarn
- name: Install JS dependencies
run: |
yarn
- name: Lint
run: |
yarn test:lint
- name: TypeScript
run: |
yarn test:ts
run: yarn
- name: Run test ${{ matrix.test-name }}
run: yarn test:${{ matrix.test-name }}
android:
name: Android
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -142,6 +140,7 @@ jobs:
release:
name: Release
needs: [review, android, ios, macos, windows]
if: github.event_name == 'push'
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand Down