Files
SponsorBlock/.github/workflows/tests.yml
2021-11-07 15:31:08 -05:00

22 lines
426 B
YAML

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: Copy configuration
run: cp config.json.example config.json
- name: Run tests
run: npm run test-without-building