Skip to content

Commit

Permalink
build: add lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Nov 4, 2022
1 parent bcaf1a8 commit 3eba5c9
Show file tree
Hide file tree
Showing 3 changed files with 4,772 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ steps-ci: &steps-ci
- *step-before-install
- run: |
case "$(uname -s)" in
"Darwin"|"Linux") npm install --engine-strict --no-lockfile ;;
*) npm install --no-lockfile ;;
"Darwin"|"Linux") yarn install --frozen-lockfile ;;
*) yarn install --frozen-lockfile ;;
esac
- *step-restore-electron-cache
- run: test/ci/_before_script.js
- *step-save-electron-cache
- run: npm run lint
- run: npm run tsd
- run: npm run coverage
- run: npm run codecov
- run: yarn run lint
- run: yarn run tsd
- run: yarn run coverage
- run: yarn run codecov

version: 2.1
orbs:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
*.pem
node_modules
package-lock.json
yarn.lock
test/fixtures/basic/main-link.js
!test/fixtures/prune-is-module/node_modules
!test/fixtures/ignore-package-lock/*
Expand Down
Loading

0 comments on commit 3eba5c9

Please sign in to comment.