1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-02-22 16:50:13 +01:00

no link checking during ci

This commit is contained in:
Pomax 2020-11-27 11:09:58 -08:00
parent 8b1a941c87
commit 78e1eefebc
2 changed files with 3 additions and 3 deletions

View File

@ -63,7 +63,7 @@ jobs:
- name: Running npm build - name: Running npm build
run: | run: |
echo "running build..." echo "running build..."
npm run deploy:nocopy npm run deploy:ci
- name: Commit changes - name: Commit changes
run: | run: |

View File

@ -17,7 +17,7 @@
"---": "--- These are the only three scripts you should care about ---", "---": "--- These are the only three scripts you should care about ---",
"start": "run-s clean:* time lint:* build time clean:temp", "start": "run-s clean:* time lint:* build time clean:temp",
"test": "run-s start && run-p watch server browser", "test": "run-s start && run-p watch server browser",
"deploy": "run-s deploy:nocopy copy", "deploy": "run-s deploy:ci copy",
"----": "--- The rest are just the various parts that make the previous three work ---", "----": "--- The rest are just the various parts that make the previous three work ---",
"browser": "open-cli http://localhost:8000", "browser": "open-cli http://localhost:8000",
"build": "node ./src/build.js", "build": "node ./src/build.js",
@ -26,7 +26,7 @@
"-----": "--- Note that due to github's naming policy, the public dir is called `docs` rather than `public` ---", "-----": "--- Note that due to github's naming policy, the public dir is called `docs` rather than `public` ---",
"clean:news": "rm -f ./docs/news/*.html", "clean:news": "rm -f ./docs/news/*.html",
"polish": "run-s pretty link-checker", "polish": "run-s pretty link-checker",
"deploy:nocopy": "run-s start polish", "deploy:ci": "run-s start pretty",
"------": "--- The copy commands rely on a parallel `bezierinfo` git repo existing ---", "------": "--- The copy commands rely on a parallel `bezierinfo` git repo existing ---",
"copy": "run-s copy:*", "copy": "run-s copy:*",
"copy:prepare": "mkdir _ && mv ../bezierinfo/.git _ && rm -rf ../bezierinfo ", "copy:prepare": "mkdir _ && mv ../bezierinfo/.git _ && rm -rf ../bezierinfo ",