Skip to content

Commit 820eb05

Browse files
committed
JS lockfiles
1 parent 3395b55 commit 820eb05

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/js-docs-builder.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
ref: main
2525
- name: Generate docs
26-
run: cd js && yarn install && yarn run make-docs
26+
run: cd js && yarn install && yarn run build && yarn run make-docs
2727
- name: Commit
2828
run: |
2929
git config --local user.email "[email protected]"

.github/workflows/js-publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
node-version: '20.x'
1515
registry-url: 'https://registry.npmjs.org'
1616
cache: 'yarn'
17+
cache-dependency-path: '**/yarn.lock'
1718
- name: Build
1819
working-directory: js
1920
run: |

.github/workflows/js-test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: 'yarn'
29+
cache-dependency-path: '**/yarn.lock'
2930
- name: Install dependencies
3031
working-directory: js
3132
run: yarn

0 commit comments

Comments
 (0)