Fixes theme exports? #684
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint & Build | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Cache Bun dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.bun/install/cache | |
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Setup Biome | |
uses: biomejs/setup-biome@v2 | |
with: | |
version: 2.0.0-beta.5 | |
- name: Run Biome | |
run: biome ci . | |
- name: Run tests | |
run: bun test | |
- name: Run build script | |
run: bun build-rslib |