Skip to content

Commit

Permalink
feat: ✨ remove pnpm dependency (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
LogicalAnt authored Aug 20, 2023
1 parent f88e6af commit 615f986
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12,751 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,15 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache: "npm"
- name: Install dependencies
run: pnpm install
run: npm ci
- name: Run tests
run: pnpm run test --coverage --collectCoverageFrom="./src/**"
run: npm run test --coverage --collectCoverageFrom="./src/**"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
Expand Down
Loading

0 comments on commit 615f986

Please sign in to comment.