Skip to content

chore: bump to 0.0.2, change field position #2

chore: bump to 0.0.2, change field position

chore: bump to 0.0.2, change field position #2

Workflow file for this run

name: CI
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Setup Yarn
run: corepack enable && yarn set version stable
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Typecheck
run: yarn type-check