Skip to content

fix: fix deploy

fix: fix deploy #13

Workflow file for this run

name: code-check
on: push
jobs:
code-check:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: use node.js
uses: actions/setup-node@v3
with:
node-version: '22.x'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run format:check