Skip to content

Vite migration from CRA #21

Vite migration from CRA

Vite migration from CRA #21

Workflow file for this run

name: CI
on:
push:
branches: [master]
paths: 'src/**'
pull_request:
branches: [master]
paths: 'src/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache-dependency-path: './package-lock.json'
- run: npm ci
- run: npm run build --if-present
- run: npm run test