[WIP] Drizzle Run next #31
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: "[Drizzle Visualizer] π pkg-pr-new" | |
on: | |
pull_request: | |
paths: | |
- "packages/visualizer/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
working-directory: packages/visualizer | |
jobs: | |
lint: | |
name: ⬣ Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: biomejs/setup-biome@v2 | |
- run: biome ci . --reporter=github | |
typecheck: | |
name: π Type check | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: "package.json" | |
cache: "npm" | |
- name: π₯ Install dependencies | |
run: npm ci --include=dev | |
- name: π Type check | |
run: npm run typecheck | |
build: | |
name: ποΈ Build | |
runs-on: ubuntu-latest | |
needs: [lint, typecheck] | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: "package.json" | |
cache: "npm" | |
- name: π₯ Install dependencies | |
run: npm ci --include=dev | |
- name: ποΈ Build | |
run: npm run build | |
- name: π¦ Publish | |
run: npx pkg-pr-new publish |