Skip to content

Fix

Fix #21

Workflow file for this run

name: CodeCheck
on:
push:
tags-ignore:
- "*"
branches: [main]
paths-ignore:
- "**.md"
pull_request:
types: [opened, synchronize, reopened]
jobs:
code-check:
name: CodeCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "npm"
- run: npm ci
- name: format
run: npm run format
- name: lint
run: npm run lint
- name: building
run: npm run build