Skip to content

Workflow file for this run

name: Lint and Test
on:
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '22.x'
- name: Install dependencies
run: yarn install
- name: Run ESLint
run: yarn run lint
- name: Run Build
run: yarn run build:prod