Skip to content

Commit

Permalink
ci: setup test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Salakar committed Jun 24, 2024
1 parent 8cba1a1 commit 32b34d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ runs:
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
yarn
npm link
cd example
yarn
shell: bash
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: yarn typecheck

test:
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -33,7 +33,8 @@ jobs:
uses: ./.github/actions/setup

- name: Run unit tests
run: yarn test --maxWorkers=2 --coverage
working-directory: ./example
run: jet --target=macos --coverage

build-library:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 32b34d2

Please sign in to comment.