Skip to content

[WIP] Drizzle Run next #38

[WIP] Drizzle Run next

[WIP] Drizzle Run next #38

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