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 6c933ff commit 1c1c058Copy full SHA for 1c1c058
.github/workflows/NodeCI.yml
@@ -49,10 +49,13 @@ jobs:
49
yarn add -D eslint@${{ matrix.eslint }} --ignore-engines
50
rm -rf node_modules
51
if: matrix.eslint != 8
52
- - name: Install Packages
+ - name: Remove @sveltejs/kit
53
+ # Use npm because yarn remove needs the lock file.
54
run: |+
- yarn remove @sveltejs/kit
55
- yarn install --ignore-engines
+ npm uninstall @sveltejs/kit
56
+ rm -rf node_modules
57
+ - name: Install Packages
58
+ run: yarn install --ignore-engines
59
- name: Test
60
run: yarn test
61
- name: Type Coverage
0 commit comments