File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -66,12 +66,18 @@ jobs:
66
66
os : [ubuntu-latest]
67
67
scala : [2.13.8, 2.12.15]
68
68
69
+ node-version : [16.x]
69
70
runs-on : ${{ matrix.os }}
70
71
steps :
71
- - name : Checkout current branch (full)
72
- uses : actions/checkout@v2
72
+ - uses : actions/checkout@v2
73
+
74
+ - name : Setup NPM
75
+ uses : pnpm/action-setup@v2
73
76
with :
74
- fetch-depth : 0
77
+ version : 7.21.0
78
+ node-version : ${{ matrix.node-version }}
79
+ cache : " pnpm"
80
+ - run : pnpm install
75
81
76
82
- name : Setup Java and Scala
77
83
uses : olafurpg/setup-scala@v10
Original file line number Diff line number Diff line change @@ -73,10 +73,9 @@ lazy val scryptoJS = scrypto.js
73
73
),
74
74
Test / parallelExecution := false ,
75
75
// how to setup ScalablyTyped https://youtu.be/hWUAVrNj65c?t=1397
76
- externalNpm := { println( s " baseDirectory: ${baseDirectory.value} " ); file(s " ${baseDirectory.value}/.. " ) },
76
+ externalNpm := { file(s " ${baseDirectory.value}/.. " ) },
77
77
Compile / npmDependencies ++= Seq (
78
- " @noble/hashes" -> " ^1.1.4" ,
79
- " typescript" -> " ^4.9.4"
78
+ " @noble/hashes" -> " ^1.1.4"
80
79
),
81
80
useYarn := true
82
81
)
You can’t perform that action at this time.
0 commit comments