Skip to content

Commit

Permalink
ci: upload coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Oct 25, 2024
1 parent 34220f9 commit 04d5371
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true

steps:
- uses: actions/checkout@v4
Expand All @@ -21,10 +23,14 @@ jobs:
node-version: 18
cache: pnpm

- name: install, build, test
run: |
pnpm i
pnpm build
pnpm test
env:
CI: true
- name: 📦 Install dependencies
run: pnpm install

- name: 🛠 Build project
run: pnpm build

- name: 🧪 Test project
run: pnpm test

- name: 🟩 Coverage
uses: codecov/codecov-action@v4

0 comments on commit 04d5371

Please sign in to comment.