Skip to content

Commit

Permalink
chore: replace yarn with npm
Browse files Browse the repository at this point in the history
  • Loading branch information
lrodrigues-newstore committed Jun 8, 2024
1 parent 5090f83 commit d1ce3f8
Show file tree
Hide file tree
Showing 8 changed files with 13,486 additions and 6,913 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: npm
- name: Install
run: yarn
run: npm install
- name: Test
run: yarn test:coverage
run: npm run test:coverage
- name: Coverage
uses: codecov/codecov-action@v4
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
yarn lint-staged
npm run lint-staged
Loading

0 comments on commit d1ce3f8

Please sign in to comment.