File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,18 @@ jobs:
1111 fail-fast : false
1212 matrix :
1313 java : [8, 25]
14- scala : [2.11.x, 2.12.x, 2.13.x, 3.x]
14+ scala : [2.12.x, 2.13.x, 3.x]
15+ scala-js : [""]
1516 platform : [JVM, JS, Native]
1617 mode : [normal]
17- exclude :
18- - scala : 2.11.x
19- platform : Native
2018 include :
19+ - java : 8
20+ scala : 2.11.x
21+ platform : JVM
22+ - java : 8
23+ scala : 2.11.x
24+ platform : JS
25+ scala-js : 1.12.0
2126 - java : 8
2227 scala : 2.12.x
2328 mode : testScalafix
3843 env :
3944 CI_JDK : ${{matrix.java}}
4045 CI_SCALA_VERSION : ${{matrix.scala}}
46+ CI_SCALA_JS_VERSION : ${{matrix.scala-js}}
4147 CI_MODE : ${{matrix.mode}}
4248 CI_PLATFORM : ${{matrix.platform}}
4349 steps :
Original file line number Diff line number Diff line change 1- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.20.1" )
1+ val scalaJSVersion =
2+ Option (System .getenv(" SCALAJS_VERSION" )).filter(_.nonEmpty).getOrElse(" 1.20.1" )
3+
4+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % scalaJSVersion)
25addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.3.2" )
36addSbtPlugin(" org.scala-native" % " sbt-scala-native" % " 0.5.8" )
47addSbtPlugin(" org.portable-scala" % " sbt-scala-native-crossproject" % " 1.3.2" )
You can’t perform that action at this time.
0 commit comments