chore(deps): update dependency vitest to v1.6.0 #21220
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: PR -> Frontend Build & Test | |
on: | |
pull_request: | |
paths: | |
- frontend/** | |
- .github/workflows/**frontend** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: build | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Enable corepack | |
run: corepack enable | |
- run: yarn --immutable | |
- run: yarn run lint:material:icons | |
- run: yarn run lint:check | |
- run: yarn run test | |
- run: yarn run ts:check # TODO: optimize |