Skip to content

chore: upgrading vite #3

chore: upgrading vite

chore: upgrading vite #3

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- "main"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run Typecheck
run: npm run typecheck
- name: Run Linting
run: npm run lint