Skip to content

Merge pull request #10 from 0918nobita/ci-workflow #34

Merge pull request #10 from 0918nobita/ci-workflow

Merge pull request #10 from 0918nobita/ci-workflow #34

Workflow file for this run

name: CI
on:
push:
paths:
- ".github/workflows/**"
- "src/**/*.ts"
- ".editorconfig"
- ".eslintrc.js"
- "package.json"
- "package-lock.json"
- "tsconfig.json"
- "vite.config.ts"
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16.15.0
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npx prettier --check ./src/**/*.ts