mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
3dd9024cc7
- appropriate job names - only trigger on pushes to master branch & PRs - conform to formatting
21 lines
351 B
YAML
21 lines
351 B
YAML
name: SQLite CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
name: Run Tests with SQLite
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# Initialization
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
- run: npm install
|
|
- name: Run Tests
|
|
timeout-minutes: 5
|
|
run: npm test
|