[WIP] Drizzle Run next #38
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: οΏ½ Cache node_modules | |
uses: actions/cache@v4 | |
id: cache-node-modules | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-modules- | |
- name: οΏ½π₯ Install dependencies | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: npm install --no-package-lock | |
- 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: οΏ½ Cache node_modules | |
uses: actions/cache@v4 | |
id: cache-node-modules | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-modules- | |
- name: οΏ½π₯ Install dependencies | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: npm install --no-package-lock | |
- name: ποΈ Build | |
run: npm run build | |
- name: π¦ Prepare package | |
run: npm run prepublishOnly | |
- name: π¦ Publish | |
run: npx pkg-pr-new publish |