From 04322449e81d6c6b5855a3d01116eafdcafd083b Mon Sep 17 00:00:00 2001 From: Fendor Date: Sun, 3 Apr 2022 20:52:00 +0200 Subject: [PATCH] Migrate CI to yarn --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d595629..6e53be3f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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