Bump vite from 2.9.12 to 2.9.16 #283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: '^6.10.0' | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
# Install and build projects | |
- run: pnpm install --frozen-lockfile | |
# Run tests for all projects | |
- run: pnpm test | |
# Check code formatting | |
- run: pnpx prettier --check . |