Skip to content

Commit

Permalink
changed npm ci to npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanm3341 committed Nov 21, 2023
1 parent 8bf2166 commit d88e0b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm install
- run: npm run build-release
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: '16.x'

- name: Install node modules and verify build
run: npm ci && npm run build-release
run: npm install && npm run build-release

- name: Publish
if: steps.release.outputs.released == 'true'
Expand Down

0 comments on commit d88e0b5

Please sign in to comment.