Skip to content

Pull NPM_TOKEN from Doppler at publish time instead of a GitHub secre… #20

Pull NPM_TOKEN from Doppler at publish time instead of a GitHub secre…

Pull NPM_TOKEN from Doppler at publish time instead of a GitHub secre… #20

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_call:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun run test