Skip to content

chore: fix README to point to new project board #242

chore: fix README to point to new project board

chore: fix README to point to new project board #242

Workflow file for this run

name: Lint and Test
on:
pull_request:
branches: [master]
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "20"
- uses: actions/checkout@v3
- name: Install Dependencies
run: npm install -g pnpm && pnpm install
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test