From 0f28a27cca5e3f673bf0f8577577e2c2ddffa2f4 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Wed, 8 Jan 2025 21:49:23 -0800 Subject: [PATCH] Try raw `bun` CI. --- .github/workflows/CI.yaml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index b5bcc60..3197090 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -3,10 +3,20 @@ name: CI on: [push, pull_request] jobs: - check: + build: runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v1 + - run: make setup + - run: make build + + test: + runs-on: ubuntu-latest + steps: - uses: actions/checkout@v4 - - uses: DeterminateSystems/nix-installer-action@main - - uses: DeterminateSystems/magic-nix-cache-action@main - - run: nix flake check + - uses: oven-sh/setup-bun@v1 + - run: make setup + - run: make lint