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 09fc8d9 commit 1938227Copy full SHA for 1938227
.github/workflows/ci.yml
@@ -43,7 +43,7 @@ jobs:
43
env:
44
CI_JDK: ${{matrix.java}}
45
CI_SCALA_VERSION: ${{matrix.scala}}
46
- CI_SCALA_JS_VERSION: ${{matrix.scala-js}}
+ CI_SCALAJS_VERSION: ${{matrix.scala-js}}
47
CI_MODE: ${{matrix.mode}}
48
CI_PLATFORM: ${{matrix.platform}}
49
steps:
project/plugins.sbt
@@ -1,5 +1,5 @@
1
val scalaJSVersion =
2
- Option(System.getenv("SCALAJS_VERSION")).filter(_.nonEmpty).getOrElse("1.20.1")
+ sys.env.get("SCALAJS_VERSION").filter(_.nonEmpty).getOrElse("1.20.1")
3
4
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
5
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
0 commit comments