hub-site/.forgejo/workflows/test.yml
SevenOfAces 36576a27f3
Some checks failed
Testing / test (pull_request) Successful in 44s
Testing / test (push) Failing after 2m31s
modified: .forgejo/workflows/test.yml
2024-11-18 20:54:59 -08:00

28 lines
No EOL
409 B
YAML

name: Testing
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Run Unit tests
run: npm run test:unit