Files
start-os/.github/workflows/test.yaml
Aiden McClelland 515d37147b build fixes
2025-11-06 10:46:14 -07:00

32 lines
522 B
YAML

name: Automated Tests
on:
push:
branches:
- master
- next/*
pull_request:
branches:
- master
- next/*
env:
NODEJS_VERSION: "24.11.0"
ENVIRONMENT: dev-unstable
jobs:
test:
name: Run Automated Tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODEJS_VERSION }}
- name: Build And Run Tests
run: make test