Skip to content

Commit

Permalink
Add pgRITA check (#190)
Browse files Browse the repository at this point in the history
* Add pgRITA check

* Use separate workflow for pgRITA

* There can never be too much postgres

* Use localhost connection

* Needs proper setup for roles
  • Loading branch information
benjie authored Aug 8, 2020
1 parent 14507bc commit d625ef2
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/workflows/pgrita.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: pgRITA

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

services:
postgres:
image: postgres:11.6
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- "0.0.0.0:5432:5432"
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Setup DB
run: |
cp .env.ci .env
yarn --frozen-lockfile
CONFIRM_DROP=1 yarn setup
- name: "Run pgRITA checks"
uses: pgrita/action@main
env:
DATABASE_URL: postgres://postgres:postgres@localhost/graphile_starter
PGRITA_TOKEN: ${{ secrets.PGRITA_TOKEN }}
with:
project: graphile/graphile-starter
pass-on-no-token: true
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@
},
"prettier": {
"trailingComma": "es5",
"proseWrap": "always"
"proseWrap": "always",
"overrides": [
{
"files": ["*.yml", "*.yaml"],
"options": {
"printWidth": 120
}
}
]
}
}

0 comments on commit d625ef2

Please sign in to comment.