Skip to content

Landing Page Footer

Landing Page Footer #2

Workflow file for this run

defaults:
run:
working-directory: ./
name: CI on pull request
on: [pull_request]
jobs:
prettier-eslint:
name: prettier-eslint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
env:
SKIP_ENV_VALIDATION: true
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install pnpm
run: pnpm install
- name: Run eslint
run: pnpm lint
- name: Run typecheck
run: pnpm check-types