Trading card city builder game?

give up on sql ci in tangled

-34
-34
.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 - useradd --system postgres 28 - sudo -U postgres -- pg_ctl initdb -U postgres -A trust 29 - sudo -U postgres -- pg_ctl start 30 - - name: Run migrate 31 - command: | 32 - npx graphile-migrate migrate 33 - - name: Stop postgres 34 - sudo -U postgres -- pg_ctl stop