Fix database connection #4
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: | |
| - '**/*' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: build | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| # https://github.com/actions/checkout | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 | |
| # https://github.com/actions/setup-node | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .tool-versions | |
| cache: npm | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| - name: Analyze the code | |
| run: | | |
| npm run lint | |
| - name: Check source code formatting | |
| run: | | |
| npm run format | |
| - name: Ensure there are no uncommitted changes | |
| run: | | |
| git status --porcelain | |
| test -z "$(git status --porcelain)" |