diff options
author | Matthew Miller <matthew@millerti.me> | 2022-09-28 14:18:45 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-09-28 14:18:45 -0700 |
commit | 6ac8490cfd60182a4a193c4985f24aba33f64599 (patch) | |
tree | 425cd1a6378b48dd41e0ab712cd418d31a25e933 | |
parent | 119f7ec064e1d91e764d0fe1ba9c8b129e4137f6 (diff) |
Only hoist in CI
-rw-r--r-- | .github/workflows/node.js.yml | 2 | ||||
-rw-r--r-- | package.json | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index af00310..cbb5872 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -25,5 +25,5 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: npm i - - run: npm run bootstrap + - run: npm run bootstrap:ci - run: npm test diff --git a/package.json b/package.json index 5b0b404..59080b9 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "name": "simplewebauthn-monorepo", "private": true, "scripts": { - "bootstrap": "lerna bootstrap --hoist", + "bootstrap": "lerna bootstrap", + "bootstrap:ci": "lerna bootstrap --hoist", "lint": "prettier --write packages/**/src/**/*.ts example/**/*.ts && eslint --fix packages/**/src/**/*.ts example/**/*.ts", "docs": "npm run bootstrap && typedoc --tsconfig tsconfigdoc.json", "test": "lerna run test", |