We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c686e commit 0432244Copy full SHA for 0432244
.github/workflows/test.yml
@@ -51,13 +51,13 @@ jobs:
51
shell: bash
52
53
# Install test dependencies
54
- - run: npm ci
55
- - run: npm run webpack
+ - run: yarn install --immutable --immutable-cache --check-cache
+ - run: yarn run webpack
56
57
# Run the tests
58
- - run: xvfb-run -s '-screen 0 640x480x16' -a npm test
+ - run: xvfb-run -s '-screen 0 640x480x16' -a yarn run test
59
if: runner.os == 'Linux'
60
- - run: npm test
+ - run: yarn run test
61
if: runner.os != 'Linux'
62
63
# Upload test artefacts
0 commit comments