Skip to content

Merge pull request #196 from stoqey/ryl20231111 #77

Merge pull request #196 from stoqey/ryl20231111

Merge pull request #196 from stoqey/ryl20231111 #77

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