Skip to content

Share agent instructions #4

Share agent instructions

Share agent instructions #4

Workflow file for this run

name: test
on:
push:
branches: [master]
pull_request:
jobs:
bun-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun test --coverage
- uses: actions/upload-artifact@v4
if: always()
with:
name: coverage
path: coverage/
node-smoke:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run build