Skip to content

test affect creation #3

test affect creation

test affect creation #3

Workflow file for this run

name: Lint
on:
push:
branches:
- main
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/iron' # '20.x'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn type-check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/iron' # '20.x'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn lint