Skip to content

Commit

Permalink
Migrate CI to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
fendor committed Apr 3, 2022
1 parent 58c686e commit 0432244
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ jobs:
shell: bash
# Install test dependencies
- run: npm ci
- run: npm run webpack
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run webpack

# Run the tests
- run: xvfb-run -s '-screen 0 640x480x16' -a npm test
- run: xvfb-run -s '-screen 0 640x480x16' -a yarn run test
if: runner.os == 'Linux'
- run: npm test
- run: yarn run test
if: runner.os != 'Linux'

# Upload test artefacts
Expand Down

0 comments on commit 0432244

Please sign in to comment.