Skip to content

Commit

Permalink
test: optimize test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Mar 17, 2024
1 parent 24bc8f7 commit 2c0b8ca
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,19 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# cache: 'yarn'
cache: 'yarn'

- name: Fetch deps
run: yarn --mutex network --frozen-lockfile --network-concurrency 25 --silent --disable-self-update-check

- name: Build
run: yarn build

- name: Run tests
- name: Run all tests
if: matrix.os == 'ubuntu-22.04'
run: yarn test

- name: Run win32 tests
if: matrix.os == 'windows-latest'
run: node --loader ts-node/esm --experimental-specifier-resolution=node ./src/test/ts/zurk.test.ts
timeout-minutes: 5

0 comments on commit 2c0b8ca

Please sign in to comment.