Skip to content

Allow option to generate index file #20

Allow option to generate index file

Allow option to generate index file #20

Workflow file for this run

name: Run tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: "Build & test packages"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build packages
run: bun run build --filter='!www'
- name: Running tests
run: bun test