chore(deps-dev): Bump vite from 5.0.10 to 5.0.12 #93
Workflow file for this run
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: Lint, Type Check, Test, Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
jobs: | |
check: | |
name: Using Node ${{ matrix.node }}/${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: ['18.x', '20.x'] | |
os: | |
- ubuntu-latest | |
# Building on macOS sometimes never exits even being successful, | |
# causing actions to hang for hours and then failing (#116). | |
# - macOS-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'yarn' | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn workspaces run build | |
- name: Check formatting | |
run: yarn check:format | |
- name: Check types | |
run: yarn check:types | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test:ci |