Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
Update moves `npm ci` to `npm i` so as not to require a `package-lock.json`
  • Loading branch information
kristoferjoseph authored May 24, 2024
1 parent 7fce967 commit f9ba5fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
registry-url: https://registry.npmjs.org/

- name: Install
run: npm ci
run: npm i

- name: Run Tests
run: npm test
Expand All @@ -49,7 +49,7 @@ jobs:
registry-url: https://registry.npmjs.org/

- name: Install
run: npm ci
run: npm i

- name: Run Tests
run: npm test
Expand Down

0 comments on commit f9ba5fb

Please sign in to comment.