mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
36 lines
705 B
YAML
36 lines
705 B
YAML
name: Automated Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- next/*
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- next/*
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
NODEJS_VERSION: "24.11.0"
|
|
ENVIRONMENT: dev-unstable
|
|
|
|
jobs:
|
|
test:
|
|
name: Run Automated Tests
|
|
if: github.event.pull_request.draft != true
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: ./.github/actions/setup-build
|
|
with:
|
|
nodejs-version: ${{ env.NODEJS_VERSION }}
|
|
free-space: "false"
|
|
setup-docker: "false"
|
|
setup-sccache: "false"
|
|
|
|
- name: Build And Run Tests
|
|
run: make test
|