Trading card city builder game?

try adding sql ci

+33
+33
.tangled/workflows/sql-ci.yaml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["*"] 4 + 5 + engine: "nixery" 6 + 7 + dependencies: 8 + nixpkgs: 9 + - nodejs 10 + - postgresql 11 + 12 + environment: 13 + DATABASE_URL: postgresql://postgres:postgres@localhost/cartography 14 + SHADOW_DATABASE_URL: postgresql://postgres:postgres@localhost/shadow 15 + ROOT_DATABASE_URL: postgresql://postgres:postgres@localhost/postgres 16 + PGDATA: /usr/local/pgsql/data/ 17 + 18 + steps: 19 + - name: Install node modules 20 + command: | 21 + npm ci 22 + - name: Check graphile status 23 + command: | 24 + npx graphile-migrate status --skipDatabase 25 + - name: Start Postgres 26 + command: | 27 + pg_ctl initdb -U postgres -A trust 28 + pg_ctl start 29 + - name: Run migrate 30 + command: | 31 + npx graphile-migrate migrate 32 + - name: Stop postgres 33 + pg_ctl stop