mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* fix automated tests * automated test gh workflow * rename workflow * ignore test that relies on physical hardware * use HOME env var when relevant * optimize * fix test
32 lines
522 B
YAML
32 lines
522 B
YAML
name: Automated Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- next/*
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- next/*
|
|
|
|
env:
|
|
NODEJS_VERSION: "18.15.0"
|
|
ENVIRONMENT: dev-unstable
|
|
|
|
jobs:
|
|
test:
|
|
name: Run Automated Tests
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ env.NODEJS_VERSION }}
|
|
|
|
- name: Build And Run Tests
|
|
run: make test
|