Profectus/.github/workflows/test.yml
thepaperpilot acf1d24c15
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 12s
Run Tests / test (push) Successful in 1m56s
Changed one of the wrong runs-on
2023-11-05 08:27:35 -06:00

21 lines
415 B
YAML

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm ci
- run: npm run build --if-present
- run: npm test