Skip to content

build: bump vite from 5.4.11 to 6.0.6 #265

build: bump vite from 5.4.11 to 6.0.6

build: bump vite from 5.4.11 to 6.0.6 #265

Workflow file for this run

name: Tests
on:
push:
branches: [ '*.x' ]
pull_request:
branches: [ '*.x' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run build
run: npm run build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run eslint
run: npm run eslint
- name: Run prettier
run: npm run prettier -- --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run tests
run: npm run test:run