Skip to content

Commit

Permalink
Remove yarn prepare
Browse files Browse the repository at this point in the history
--ignore-scripts ends up preventing node-pty from building, to
optimize we need to split these up more
  • Loading branch information
Tyriar committed Aug 19, 2023
1 parent ff8e4ac commit 2556751
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
run: yarn --frozen-lockfile
- name: Build
run: yarn setup
- name: Zip artifacts
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
run: yarn --frozen-lockfile
- name: Lint code
run: yarn lint
- name: Lint API
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
run: yarn --frozen-lockfile
- name: Unit tests
run: yarn test-unit --forbid-only

Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
"test-unit-coverage": "node ./bin/test.js --coverage",
"test-unit-dev": "cross-env NODE_PATH='./out' mocha",
"build": "tsc -b ./tsconfig.all.json",
"prepare": "npm run setup",
"setup": "npm run build",
"presetup": "node ./bin/install-addons.js",
"postsetup": "npm run inwasm",
Expand Down

0 comments on commit 2556751

Please sign in to comment.