This repository was archived by the owner on Jul 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 66 strategy :
77 fail-fast : false
88 matrix :
9- scala : [2.13.3 , 2.12.12]
10- nodejs : [14.15.1 , 12.19.1 , 10.23.0]
9+ scala : [2.13.4 , 2.12.12]
10+ nodejs : [14.15.2 , 12.20.0 , 10.23.0]
1111 steps :
1212 - uses : actions/checkout@v2
1313 - uses : olafurpg/setup-scala@v10
2222 run : sbt ++${{ matrix.scala }} test
2323 env :
2424 NODEJS_VERSION : ${{ matrix.nodejs }}
25+
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ Scala.js type facades for Node.js v10, v12 and v14.
1111| Scala 2.11 | N/A | N/A |
1212| Scala 2.10 | N/A | N/A |
1313
14- - :heavy_check_mark : Supported
15- - :construction : Not supported but planned
14+ * :heavy_check_mark : Supported
15+ * :construction : Not supported but planned
1616
1717## Supported Modules
1818
Original file line number Diff line number Diff line change 1+ lazy val scala213 = " 2.13.4"
2+ lazy val scala212 = " 2.12.12"
13organization in ThisBuild := " net.exoego"
2- crossScalaVersions in ThisBuild := Seq (" 2.13.3" , " 2.12.12" )
4+ crossScalaVersions in ThisBuild := Seq (scala213, scala212)
5+ scalaVersion in ThisBuild := scala213
36
47lazy val root = {
58 val p = (project in file(" ." ))
@@ -26,9 +29,9 @@ lazy val core = (project in file("./core"))
2629 libraryDependencies ++= Dependencies .core.value
2730 )
2831
29- lazy val nodejs_v14 = createNodeVersionSpecificProject(" 14.14.0 " )
30- lazy val nodejs_v12 = createNodeVersionSpecificProject(" 12.19 .0" )
31- lazy val nodejs_v10 = createNodeVersionSpecificProject(" 10.22.1 " )
32+ lazy val nodejs_v14 = createNodeVersionSpecificProject(" 14.15.2 " )
33+ lazy val nodejs_v12 = createNodeVersionSpecificProject(" 12.20 .0" )
34+ lazy val nodejs_v10 = createNodeVersionSpecificProject(" 10.23.0 " )
3235
3336def createNodeVersionSpecificProject (nodeFullVersion : String ) = {
3437 val majorVersion = nodeFullVersion.split(" \\ ." )(0 )
Original file line number Diff line number Diff line change 1212 ]
1313 },
1414 "dependencies" : {
15- "remark-cli" : " ^8 .0.0" ,
16- "remark-preset-lint-recommended" : " ^4 .0.0" ,
17- "source-map-support" : " ^0.5.13 "
15+ "remark-cli" : " ^9 .0.0" ,
16+ "remark-preset-lint-recommended" : " ^5 .0.0" ,
17+ "source-map-support" : " ^0.5.19 "
1818 }
1919}
You can’t perform that action at this time.
0 commit comments