Skip to content

Migrate to TypeScript with Vite build system and modernize to ES2020 … #7

Migrate to TypeScript with Vite build system and modernize to ES2020 …

Migrate to TypeScript with Vite build system and modernize to ES2020 … #7

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Lint check
run: npm run lint
- name: Format check
run: npm run format:check
- name: Type check
run: npm run type-check
- name: Run tests
run: npm run test
- name: Build
run: npm run build