Skip to content

Series Redesign

Series Redesign #1373

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, synchronize]
jobs:
lint-and-build:
runs-on: ubuntu-latest
name: Lint check and build test PR
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js v20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Setup pnpm and install dependencies
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: Lint
run: pnpm lint --quiet
- name: Build
run: pnpm build