Skip to content

Upgrade and pin Prettier #120

Upgrade and pin Prettier

Upgrade and pin Prettier #120

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
- name: Test
run: bun 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