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 3371d21 commit 888117fCopy full SHA for 888117f
.github/workflows/ci.yml
@@ -60,6 +60,7 @@ jobs:
60
uses: actions/setup-node@v3
61
with:
62
node-version: 16
63
+ cache: npm
64
65
- name: Install jsdom
66
if: matrix.ci == 'ciJSDOMNodeJS'
build.sbt
@@ -51,7 +51,7 @@ ThisBuild / githubWorkflowBuildPreamble ++= Seq(
51
WorkflowStep.Use(
52
UseRef.Public("actions", "setup-node", "v3"),
53
name = Some("Setup NodeJS v16 LTS"),
54
- params = Map("node-version" -> "16"),
+ params = Map("node-version" -> "16", "cache" -> "npm"),
55
cond = Some("matrix.ci == 'ciNode' || matrix.ci == 'ciJSDOMNodeJS'")),
56
WorkflowStep.Run(
57
List("npm install"),
0 commit comments