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 6
6
strategy :
7
7
fail-fast : false
8
8
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]
11
11
steps :
12
12
- uses : actions/checkout@v2
13
13
- uses : olafurpg/setup-scala@v10
22
22
run : sbt ++${{ matrix.scala }} test
23
23
env :
24
24
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.
11
11
| Scala 2.11 | N/A | N/A |
12
12
| Scala 2.10 | N/A | N/A |
13
13
14
- - :heavy_check_mark : Supported
15
- - :construction : Not supported but planned
14
+ * :heavy_check_mark : Supported
15
+ * :construction : Not supported but planned
16
16
17
17
## Supported Modules
18
18
Original file line number Diff line number Diff line change
1
+ lazy val scala213 = " 2.13.4"
2
+ lazy val scala212 = " 2.12.12"
1
3
organization 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
3
6
4
7
lazy val root = {
5
8
val p = (project in file(" ." ))
@@ -26,9 +29,9 @@ lazy val core = (project in file("./core"))
26
29
libraryDependencies ++= Dependencies .core.value
27
30
)
28
31
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 " )
32
35
33
36
def createNodeVersionSpecificProject (nodeFullVersion : String ) = {
34
37
val majorVersion = nodeFullVersion.split(" \\ ." )(0 )
Original file line number Diff line number Diff line change 12
12
]
13
13
},
14
14
"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 "
18
18
}
19
19
}
You can’t perform that action at this time.
0 commit comments