Bump @playwright/test from 1.49.0 to 1.49.1 in /src #3892
This file contains 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: MySQL End to End Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
env: | |
CI: true | |
DATABASE_HOST: 127.0.0.1 | |
DATABASE_USERNAME: root | |
DATABASE_PASSWORD: root | |
DATABASE_PORT: 3306 | |
DATABASE_NAME: Chinook | |
jobs: | |
mysql-end-to-end-tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: src | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
env: | |
cache-name: cache-pnpm-modules | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}- | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 9.11.0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
cache: "pnpm" | |
cache-dependency-path: src/pnpm-lock.yaml | |
- name: Install dependencies | |
run: pnpm i | |
- name: Build CLI tool | |
run: pnpm build | |
- name: 🔥 Initialize MySQL | |
run: sudo systemctl start mysql.service | |
- name: Import Mysql Chinook Database | |
working-directory: src/packages/end-to-end | |
run: pnpm import-database-mysql | |
- name: Start and Test Chinook instance | |
working-directory: src/packages/end-to-end | |
timeout-minutes: 2 | |
run: | | |
pnpm start-server & | |
sleep 3 && | |
pnpm test-mysql && | |
killall node |