Skip to content

breadcrumbs fixed!

breadcrumbs fixed! #12

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: npm install -g pnpm && pnpm install
- name: Copy .env.example files
shell: bash
run: find . -type f -name ".env.example" -exec sh -c 'cp "$1" "${1%.*}"' _ {} \;
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint