Skip to content

chore(deps): update dependency vite to v4.4.6 #408

chore(deps): update dependency vite to v4.4.6

chore(deps): update dependency vite to v4.4.6 #408

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-node@v3.7.0
with:
cache: yarn
check-latest: true
- run: yarn
- run: yarn lint --no-fix
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
with:
submodules: true
- uses: actions/setup-node@v3.7.0
with:
cache: yarn
check-latest: true
- run: yarn
- run: yarn build
coverage:
name: Test Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
with:
submodules: true
- uses: actions/setup-node@v3.7.0
with:
cache: yarn
check-latest: true
- run: yarn
- run: yarn build:frame
- run: yarn test
- uses: coverallsapp/github-action@v2.2.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
test:
name: Test LTS
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 16
- 18
steps:
- uses: actions/checkout@v3.5.3
with:
submodules: true
- uses: actions/setup-node@v3.7.0
with:
cache: yarn
node-version: ${{ matrix.node }}
- run: yarn
- run: yarn build:frame
- run: yarn test