From 78e1eefebc07d42c2671d1730ba1d347083dce67 Mon Sep 17 00:00:00 2001 From: Pomax Date: Fri, 27 Nov 2020 11:09:58 -0800 Subject: [PATCH] no link checking during ci --- .github/workflows/ci.yml | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0101ac00..6e0d85c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: - name: Running npm build run: | echo "running build..." - npm run deploy:nocopy + npm run deploy:ci - name: Commit changes run: | diff --git a/package.json b/package.json index e7b817d1..da70119f 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "---": "--- These are the only three scripts you should care about ---", "start": "run-s clean:* time lint:* build time clean:temp", "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 ---", "browser": "open-cli http://localhost:8000", "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` ---", "clean:news": "rm -f ./docs/news/*.html", "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 ---", "copy": "run-s copy:*", "copy:prepare": "mkdir _ && mv ../bezierinfo/.git _ && rm -rf ../bezierinfo ",