Skip to content

chore(release): v0.2.0 #2

chore(release): v0.2.0

chore(release): v0.2.0 #2

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Check code style
run: yarn run format:check
- name: Type check
run: yarn run type:check