Skip to content

Upgrade everything (#44) #44

Upgrade everything (#44)

Upgrade everything (#44) #44

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
name: Check
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: Yarn Cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
- run: yarn install
- name: Typecheck
run: yarn typecheck
- name: Lint
run: yarn lint