Feat/rename to repoverse #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reusable workflow for PRs; to eject, you can replace this file with | |
# https://github.com/ryansonshine/ryansonshine/blob/main/.github/workflows/pr.yml | |
name: Pull Request | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- run: bun i | |
- run: bun run build | |
- run: bun run test | |
- name: Upload Code Coverage | |
uses: codecov/[email protected] |