Skip to content

ci: fix registry notification workflow (PLT-846) (#331) #1098

ci: fix registry notification workflow (PLT-846) (#331)

ci: fix registry notification workflow (PLT-846) (#331) #1098

Workflow file for this run

name: Checks
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: oven-sh/setup-bun@v2
with:
bun-version: '1.3.14'
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y rsync
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint, Format & Type Check
run: bun run check
- name: Build All Packages
run: bun run build
- name: Test
run: bun run test
- name: Validate Published Packages
run: bun run lint:pack:all