Skip to content

Issue Unprocessed Data #203 bug fix (server version >= 177) #103

Issue Unprocessed Data #203 bug fix (server version >= 177)

Issue Unprocessed Data #203 bug fix (server version >= 177) #103

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@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.19.1
cache: "yarn" # caches the yarn cache folder not node_modules
- name: Prepare
run: yarn install --frozen-lockfile
- name: Type Check
run: yarn type-check
- name: Lint Check
run: yarn lint