Server/.gitea/workflows/run-tests.yaml
Refringe a51ef26dae
Tests Workflow - Pull LFS Files
This pulls down the server git lfs files for the test.
2024-04-10 16:02:18 -04:00

27 lines
505 B
YAML

name: Run Tests
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
trigger-main-build:
runs-on: ubuntu-latest
container:
image: node:20.11.1-bookworm
steps:
- uses: actions/checkout@v3
with:
lfs: true
fetch-depth: 1
- name: Install Dependencies
working-directory: /workspace/SPT-AKI/Server/project
run: npm install
- name: Run Tests
working-directory: /workspace/SPT-AKI/Server/project
run: npm run test