Skip to content

feat: workflowを追加 #1

feat: workflowを追加

feat: workflowを追加 #1

Workflow file for this run

name: Static Test
on: push
jobs:
static-test:
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
- run: npm run lint
- run: npm run format:ci
- run: npx tsc