Skip to content

Playwright

Playwright #12

Workflow file for this run

name: ESLint Checks
on:
pull_request:
branches:
- main
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Dependencies
run: npm install -g pnpm && pnpm install
- name: Run ESLint
run: pnpm run lint