Skip to content

Commit 6ece912

Browse files
committed
fix ci 8
1 parent d6c7617 commit 6ece912

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/Documenter.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,21 @@ jobs:
3535
steps:
3636
- name: Checkout
3737
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
4444
- name: Setup Julia
4545
uses: julia-actions/setup-julia@v1
4646
- name: Pull Julia cache
4747
uses: julia-actions/cache@v1
4848
- name: Install documentation dependencies
4949
run: julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.update(); Pkg.precompile(); Pkg.status()'
5050
# run: julia --project=docs -e 'using Pkg; pkg"dev ."; Pkg.instantiate(); Pkg.precompile(); Pkg.status()'
51-
# run: cd docs/; npm i; cd ..
52-
#- name: Creating new mds from src
51+
- name: Install npm
52+
run: cd docs/; npm i; cd ..
5353
- name: Build and deploy docs
5454
uses: julia-actions/julia-docdeploy@v1
5555
with:

0 commit comments

Comments
 (0)