Skip to content

Add checks workflow on pull #2

Add checks workflow on pull

Add checks workflow on pull #2

Workflow file for this run

name: Checks
on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install node dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test