Skip to content

Bump eslint-plugin-react from 7.35.2 to 7.36.1 in the lint group #577

Bump eslint-plugin-react from 7.35.2 to 7.36.1 in the lint group

Bump eslint-plugin-react from 7.35.2 to 7.36.1 in the lint group #577

Workflow file for this run

name: Playwright Tests
on:
workflow_dispatch:
pull_request:
jobs:
test:
name: Test Playwright
timeout-minutes: 60
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"
- name: Restore cache
uses: actions/cache@v4
with:
path: |
public
.cache
key: ${{ runner.os }}-gatsby-build-${{ hashFiles('public') }}
restore-keys: |
${{ runner.os }}-gatsby-build-
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install chromium
- name: Build with Gatsby
env:
GITHUB_TOKEN: ${{ secrets.BUILD_GITHUB_TOKEN }}
run: npm run build
- name: Run Playwright tests
run: npx playwright test