SponsorBlock/.github/workflows/tests.yml

20 lines
337 B
YAML
Raw Permalink Normal View History

2021-10-02 23:42:47 +02:00
name: Tests
on: [push, pull_request]
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
steps:
# Initialization
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: npm ci
- name: Run tests
run: npm run test-without-building