cli: refactor build, dev, start commands #290
Workflow file for this run
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 | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
services: | |
postgres: | |
image: postgres:16 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set Node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.10.0 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: pnpm install --strict-peer-dependencies=false | |
- name: Run lint | |
run: pnpm lint | |
- name: Run build | |
# Exclude examples/cli since it requires the cli to be built. | |
run: pnpm build --filter=!./examples/cli | |
- name: Run typecheck | |
run: pnpm typecheck | |
- name: Run test | |
run: pnpm test:ci --filter=!./examples/cli | |
- name: Check change files | |
run: pnpm beachball check |