Skip to content

Commit

Permalink
ci: install playwright browser
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jan 25, 2024
1 parent da690c2 commit 7352f93
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Install
run: npm install
- name: Run Postgres Tests
Expand Down Expand Up @@ -60,6 +62,8 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Mysql Tests
run: npm run test:${{ matrix.mysql.command }}

Expand All @@ -84,6 +88,8 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Mssql Tests
run: npm run test:mssql

Expand All @@ -101,5 +107,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Sqlite Tests
run: npm run test:${{ matrix.lib }}

0 comments on commit 7352f93

Please sign in to comment.