chore(deps): Update mysql Docker tag to v9.7 #3438
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: CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| name: "Run lint" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 8 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: pnpm | |
| cache-dependency-path: pnpm-lock.yaml | |
| - run: | | |
| pnpm install | |
| pnpm prisma:generate | |
| pnpm run lint | |
| test: | |
| runs-on: ubuntu-24.04 | |
| needs: lint | |
| env: | |
| TEST_TIME_FACTOR: 10.0 | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 8 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| cache-dependency-path: pnpm-lock.yaml | |
| - run: | | |
| pnpm install | |
| pnpm prisma:generate | |
| pnpm run test | |
| e2e: | |
| runs-on: ubuntu-24.04 | |
| needs: test | |
| env: | |
| TEST_TIME_FACTOR: 10.0 | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 8 | |
| - uses: unfor19/install-aws-cli-action@v1 | |
| with: | |
| version: "2" | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| cache-dependency-path: pnpm-lock.yaml | |
| - run: | | |
| pnpm docker-build-e2e-test | |
| pnpm docker-build | |
| pnpm docker-compose-e2e-test |