Skip to content

Commit 6468d48

Browse files
authored
Update scala.yml
1 parent 385a025 commit 6468d48

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/scala.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,20 @@ jobs:
66
build:
77

88
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
node-version: [8.x, 10.x, 12.x]
913

1014
steps:
1115
- uses: actions/checkout@v2
1216
- name: Set up JDK 1.8
1317
uses: actions/setup-java@v1
1418
with:
1519
java-version: 1.8
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v1
22+
with:
23+
node-version: ${{ matrix.node-version }}
1624
- name: Run tests
1725
run: sbt test

0 commit comments

Comments
 (0)