mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
25 lines
No EOL
593 B
YAML
25 lines
No EOL
593 B
YAML
name: PostgreSQL CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Run Tests with PostgreSQL
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build the docker-compose stack
|
|
env:
|
|
PG_USER: ci_db_user
|
|
PG_PASS: ci_db_pass
|
|
run: docker-compose -f docker/docker-compose-ci.yml up -d
|
|
- name: Check running containers
|
|
run: docker ps
|
|
- uses: actions/setup-node@v2
|
|
- run: npm install
|
|
- name: Run Tests
|
|
env:
|
|
TEST_POSTGRES: true
|
|
timeout-minutes: 5
|
|
run: npm test |