Skip to content

Make scorecard generic #501

Make scorecard generic

Make scorecard generic #501

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
test:
if: github.repository_owner == 'ParkingReformNetwork'
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
corepack enable pnpm
pnpm install
npx playwright install --with-deps
- name: Typecheck
run: pnpm check
- name: Lint
run: pnpm lint
- name: Run tests
run: pnpm test