mirror of
https://github.com/SelfhostedPro/selfhosted_templates.git
synced 2026-04-02 10:52:21 +00:00
14 lines
240 B
YAML
14 lines
240 B
YAML
name: tests
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '14.x'
|
|
- run: npm install
|
|
- run: npm test
|