Bump the minor-patch-dependencies group across 1 directory with 21 updates #455
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: Pull Request Checks | |
| on: | |
| workflow_call: | |
| secrets: | |
| CODECOV_TOKEN: | |
| required: true | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint-and-build: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres:15 | |
| env: | |
| POSTGRES_PASSWORD: synapse_password | |
| POSTGRES_USER: synapse_user | |
| POSTGRES_DB: synapse | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| ports: | |
| - 5432:5432 | |
| mysql: | |
| image: mysql:8.0 | |
| env: | |
| MYSQL_ROOT_PASSWORD: synapse_root_password | |
| MYSQL_DATABASE: synapse | |
| MYSQL_USER: synapse_user | |
| MYSQL_PASSWORD: synapse_password | |
| options: >- | |
| --health-cmd="mysqladmin ping" | |
| --health-interval=10s | |
| --health-timeout=5s | |
| --health-retries=3 | |
| ports: | |
| - 3306:3306 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: corepack enable | |
| - run: yarn config set enableImmutableInstalls false | |
| - run: yarn | |
| - run: yarn build | |
| - run: yarn lint | |
| - run: yarn test --coverage | |
| env: | |
| DB_PG: postgresql://synapse_user:synapse_password@localhost:5432/synapse | |
| DB_MYSQL: mysql://synapse_user:synapse_password@localhost:3306/synapse | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5.4.3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |