Merge pull request #10 from noahm/fc/bacon-smx #68
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: Status Checks | |
on: | |
push: | |
jobs: | |
biome: | |
runs-on: ubuntu-latest | |
name: Biome Lint | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- run: yarn --immutable | |
- run: yarn lint:ci | |
tsc: | |
runs-on: ubuntu-latest | |
name: Typescript | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- run: yarn --immutable | |
- run: yarn typecheck | |
test: | |
runs-on: ubuntu-latest | |
name: Tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- run: yarn --immutable | |
- run: yarn test | |
build: | |
runs-on: ubuntu-latest | |
name: Vite Build | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- run: yarn --immutable | |
- run: yarn build | |