Skip to content

feat: test

feat: test #3

Workflow file for this run

name: Build Check
on:
workflow_dispatch:
pull_request:
branches: [main]
jobs:
build:
name: Build Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn
- name: ESLint check
run: yarn lint
- name: TypeScript check
run: yarn type-check
- name: Build
run: yarn build