Skip to content

Commit

Permalink
chore: Update npm dependencies and configuration files, and use npm c…
Browse files Browse the repository at this point in the history
…i for installing dependencies
  • Loading branch information
sametcn99 committed May 15, 2024
1 parent c5f11e4 commit 2428990
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ jobs:
- uses: actions/setup-node@master
with:
node-version: 20
cache: npm
- name: install dependencies
run: npm install
run: npm ci
- name: build
run: npm run make

Expand All @@ -22,9 +21,8 @@ jobs:
- uses: actions/setup-node@master
with:
node-version: 20
cache: npm
- name: install dependencies
run: npm install
run: npm ci
- name: build
run: npm run make

Expand All @@ -35,8 +33,7 @@ jobs:
- uses: actions/setup-node@master
with:
node-version: 20
cache: npm
- name: install dependencies
run: npm install
run: npm ci
- name: build
run: npm run make
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
node-version: 20
- name: install dependencies
run: npm install
run: npm ci
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -27,7 +27,7 @@ jobs:
with:
node-version: 20
- name: install dependencies
run: npm install
run: npm ci
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -41,7 +41,7 @@ jobs:
with:
node-version: 20
- name: install dependencies
run: npm install
run: npm ci
- name: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 2428990

Please # to comment.