Skip to content

Merge pull request #333 from Shivam250702/main #1

Merge pull request #333 from Shivam250702/main

Merge pull request #333 from Shivam250702/main #1

Workflow file for this run

name: Test CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install deps
run: bun i
- name: Lint
run: bun run lint
- name: Test and coverage
run: bun run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3