diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index fd757db..b63f3ea 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -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 @@ -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 }} @@ -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 @@ -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 }}