Skip to content

Commit 4214c9c

Browse files
committed
Fix ci
1 parent df6fc40 commit 4214c9c

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
node-version: '22'
2626
- run: npm ci
27-
- run: npm run build
27+
- run: npm run build:specs
2828
- run: npm run build:docs
2929
- name: Deploy to GitHub Pages
3030
uses: peaceiris/actions-gh-pages@v4

.github/workflows/test-deploy.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ on:
44
pull_request:
55
branches:
66
- main
7-
# Review gh actions docs if you want to further define triggers, paths, etc
8-
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
97
workflow_dispatch:
108

119
jobs:
@@ -28,5 +26,5 @@ jobs:
2826
run: npm install --frozen-lockfile
2927
- name: Test build website
3028
run: |
31-
npm run build
29+
npm run build:specs
3230
npm run build:docs

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
node-version: 22
1414
- run: npm ci
15-
- run: npm run build
15+
- run: npm run build:specs
1616
- run: npm run lint
1717
- name: Set up Go 1.x
1818
uses: actions/setup-go@v2

0 commit comments

Comments
 (0)