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 f0dc9bd commit 5d07ff0Copy full SHA for 5d07ff0
.github/workflows/ci.yml
@@ -12,13 +12,17 @@ jobs:
12
strategy:
13
fail-fast: false
14
matrix:
15
+ nodejsversion: ["15", "16", "17"]
16
scalaversion: ["2.11.12", "2.12.11", "2.13.2"]
17
project: ["scalajs-js-envs", "scalajs-js-envs-test-kit", "scalajs-env-nodejs"]
18
steps:
19
- uses: actions/checkout@v2
20
- uses: olafurpg/setup-scala@v10
21
with:
22
java-version: "adopt@1.8"
23
+ - uses: actions/setup-node@v2
24
+ with:
25
+ node-version: "${{ matrix.nodejsversion }}"
26
- uses: coursier/cache-action@v5
27
- name: Test
28
run: sbt "++${{ matrix.scalaversion }}" ${{ matrix.project }}/test
0 commit comments