Skip to content

Minor changes to test case #69

Minor changes to test case

Minor changes to test case #69

Workflow file for this run

name: Quality Check
on:
push:
paths-ignore:
- "README.md"
- "LICENSE"
- ".github/workflows/build.yml"
jobs:
job:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.17.1
- name: Prepare
run: yarn install --frozen-lockfile
- name: Type Check
run: yarn type-check
- name: Lint Check
run: yarn lint