Skip to content

Commit e2db8cf

Browse files
authoredNov 28, 2022
Add back 1.11 support (#26)
1 parent c40803e commit e2db8cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
fail-fast: false
5252
matrix:
5353
os: [ubuntu-latest, windows-latest, macos-latest]
54-
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.12.0"]
54+
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0"]
5555
steps:
5656
- uses: actions/checkout@v2
5757
with:
@@ -95,7 +95,7 @@ jobs:
9595
strategy:
9696
fail-fast: false
9797
matrix:
98-
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.12.0"]
98+
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0"]
9999
steps:
100100
- uses: actions/checkout@v2
101101
with:
@@ -129,7 +129,7 @@ jobs:
129129
strategy:
130130
fail-fast: false
131131
matrix:
132-
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.12.0"]
132+
scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0"]
133133
steps:
134134
- uses: actions/checkout@v2
135135
with:

‎build.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import scala.util.Properties.isWin
1919
def scalaJsCliVersion = "1.1.1-sc5"
2020
def scala213 = "2.13.8"
2121
def latestScalaJsVersion = "1.12.0"
22-
def scalaJsVersions = Seq("1.9.0", "1.10.0", "1.10.1", latestScalaJsVersion)
22+
def scalaJsVersions = Seq("1.9.0", "1.10.0", "1.10.1", "1.11.0", latestScalaJsVersion)
2323

2424
object cli extends Cross[Cli](scalaJsVersions: _*)
2525

0 commit comments

Comments
 (0)
Please sign in to comment.