Skip to content

Commit

Permalink
Merge pull request #4 from lui7henrique/task/test-coverage
Browse files Browse the repository at this point in the history
feat(workflow): improve test coverage validation for Node.js CI workflow
  • Loading branch information
lui7henrique authored Oct 10, 2024
2 parents 71ddfe5 + 54e3041 commit 3e2ed4d
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/node.js.yml → .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Node.js CI
name: Coverage

on:
push:
Expand Down Expand Up @@ -36,14 +36,11 @@ jobs:
curl -fsSL https://bun.sh/install | bash
echo "$HOME/.bun/bin" >> $GITHUB_PATH
- name: Install dependencies with Bun
- name: Install dependencies
run: bun install

- name: Run migrations with Bun
- name: Run migrations
run: bun run pretest

- name: Execute tests with Bun
run: bun run test

- name: Execute test coverage with Bun
- name: Execute test coverage
run: bun run test:coverage

0 comments on commit 3e2ed4d

Please sign in to comment.