Skip to content

Commit

Permalink
ci: 💚 setup pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
MagdielCAS committed May 26, 2024
1 parent de7af39 commit ab48c13
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,29 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/checkout@v4

- uses: pnpm/action-setup@v3
with:
version: 9

- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
cache: 'pnpm'

- name: Install dependencies
run: pnpm install

- name: Install dependencies
run: pnpm build

- name: Test
run: pnpm test:coverage

- name: Test
run: pnpm test:coverage

- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.3.0

0 comments on commit ab48c13

Please sign in to comment.