Skip to content

Commit

Permalink
fix: use npm instead yarn (#414)
Browse files Browse the repository at this point in the history
Co-authored-by: Charles <[email protected]>
  • Loading branch information
assuncaocharles and Charles authored Nov 19, 2024
1 parent 7e1c325 commit d8feef2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/buid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,5 @@ jobs:

- name: npm ci and npm run build
run: |
npm i -g yarn
yarn install --immutable --immutable-cache --check-cache
yarn run build:lib
npm install --immutable --immutable-cache --check-cache
npm run build:lib
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,5 @@ jobs:

- name: npm ci and npm run build
run: |
npm i -g yarn
yarn install --immutable --immutable-cache --check-cache
yarn run build:lib
npm install --immutable --immutable-cache --check-cache
npm run build:lib
7 changes: 3 additions & 4 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ jobs:
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm install -g yarn
- run: yarn install
- run: yarn pack
- run: yarn run build:lib
- run: npm install
- run: npm pack
- run: npm run build:lib
- name: Publish
working-directory: ./dist/ngx-indexed-db
run: npm publish --access public
Expand Down

0 comments on commit d8feef2

Please sign in to comment.