Bump @playwright/test from 1.48.1 to 1.48.2 in the test group #2216
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: ddg2dnr | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: '${{ matrix.os }}' | |
strategy: | |
matrix: | |
node: [20.x] | |
os: [ubuntu-latest] # FIXME - macos-latest runner keeps failing | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- run: npm run install-ci | |
- run: npm run lint --workspace=packages/ddg2dnr | |
test: | |
runs-on: '${{ matrix.os }}' | |
strategy: | |
matrix: | |
node: [20.x] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- run: npm run install-ci | |
- run: npm test --workspace=packages/ddg2dnr |