Skip to content

Scaffold out some of the main flows in the app #38

Scaffold out some of the main flows in the app

Scaffold out some of the main flows in the app #38

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 20
- name: Install packages
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck