You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/Documenter.yml
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -35,21 +35,21 @@ jobs:
35
35
steps:
36
36
- name: Checkout
37
37
uses: actions/checkout@v4
38
-
#- name: Setup Node # This is still useful because it caches the node_modules so we don't constantly re-install. You don't technically need this, though.
39
-
# uses: actions/setup-node@v3
40
-
# with:
41
-
# node-version: 20
42
-
# cache: npm # or pnpm / yarn
43
-
# cache-dependency-path: 'docs/package-lock.json' # this should be a package-lock.json file
38
+
- name: Setup Node # This is still useful because it caches the node_modules so we don't constantly re-install. You don't technically need this, though.
39
+
uses: actions/setup-node@v3
40
+
with:
41
+
node-version: 20
42
+
cache: npm # or pnpm / yarn
43
+
cache-dependency-path: 'docs/package-lock.json'# this should be a package-lock.json file
44
44
- name: Setup Julia
45
45
uses: julia-actions/setup-julia@v1
46
46
- name: Pull Julia cache
47
47
uses: julia-actions/cache@v1
48
48
- name: Install documentation dependencies
49
49
run: julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.update(); Pkg.precompile(); Pkg.status()'
0 commit comments