sourcebot/.github/workflows/test-backend.yml
Brendan Kellam bb00a641b6
chore: Revert to using GitHub runners (#675)
* Revert "Migrate workflows to Blacksmith (#554)"

This reverts commit 0e8fdf0f97.

* Revert "use blacksmith arm machine for arm builds"

This reverts commit 595abc12be.
2025-12-12 14:36:39 -08:00

28 lines
528 B
YAML

name: Test Backend
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "true"
- name: Use Node.Js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install
run: yarn install --frozen-lockfile
- name: Test
run: yarn workspace @sourcebot/backend test