docs: warn that v4 removes the bundled postgres and document the migration #2154
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches: | |
| - '!production' | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: "22.x" | |
| - run: corepack enable | |
| - run: npm install | |
| - run: touch .env | |
| - run: npm run build | |
| env: | |
| CI: true | |
| static-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: "22.x" | |
| - run: corepack enable | |
| - run: npm install | |
| - run: npm run eslint | |
| - run: npm run prettier-check |