Compact CI config #112
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
name: Continuous Integration | |
on: [push] | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- run: bun install --frozen-lockfile | |
- run: bun run build | |
- run: bun run test | |
# TODO: Upload to Codecov once Bun outputs lcov (https://github.com/oven-sh/bun/issues/4015) | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v1 |