Start implementation on serve command #25
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: Build and Test | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Necessary for changeset status to work | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.5.0 | |
# Necessary for changeset status to work | |
# - run: git checkout main && git checkout $GITHUB_SHA | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run build | |
- run: pnpm test | |
- run: pnpm run check-format | |
- run: pnpm exec changeset status |