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 b575012 commit 33eaaaeCopy full SHA for 33eaaae
.github/workflows/ci.yml
@@ -25,7 +25,9 @@ jobs:
25
with:
26
node-version: 12
27
- name: Install jsdom
28
- run: npm install "jsdom@${{ matrix.jsdomversion }}"
+ env:
29
+ V: ${{ matrix.jsdomversion }}
30
+ run: (cd jsdom-$V && npm ci) && ln -s jsdom-$V/node_modules
31
- name: Unit tests
32
run: sbt "++${{ matrix.scalaversion }}" scalajs-env-jsdom-nodejs/test
33
- name: Doc generation
.gitignore
@@ -1 +1,2 @@
1
target/
2
+node_modules
0 commit comments