Skip to content

Commit 1809ba0

Browse files
authored
Switch to Yarn 1 (#317)
* Switch to Yarn 1 Fixes #315 * fix: try ignoring the particular error that seems to be caused by the newest version of vuepress * chore: ignore duplicate id outbound-link-title error
1 parent 06e180e commit 1809ba0

File tree

9 files changed

+155300
-10784
lines changed

9 files changed

+155300
-10784
lines changed

.github/workflows/build-deploy-doc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414

1515
- name: Install and Build
1616
run: |
17-
npm install
18-
npm run docs:build
17+
yarn install
18+
yarn docs:build
1919
2020
- name: Deploy to gh-pages
2121
uses: JamesIves/github-pages-deploy-action@releases/v3

.github/workflows/test-build.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ jobs:
1717

1818
- name: Install and Build
1919
run: |
20-
npm install
21-
npm run docs:build
20+
yarn install
21+
yarn docs:build
2222
2323
- name: HTML5 Validator
2424
uses: Cyb3r-Jak3/html5validator-action@master
2525
with:
2626
root: main/.vuepress/dist
27+
extra: --ignore_re r'\ADuplicate ID "outbound-link-title".*'
2728

0 commit comments

Comments
 (0)