Skip to content

chore(deps-dev): bump vite from 5.0.10 to 5.0.12 #11

chore(deps-dev): bump vite from 5.0.10 to 5.0.12

chore(deps-dev): bump vite from 5.0.10 to 5.0.12 #11

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node environment
uses: actions/setup-node@v4
with:
node-version: '18.17.0'
cache: 'yarn'
cache-dependency-path: |
.yarn
yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn nx run-many --target=lint
- name: Type check
run: yarn nx run-many --target=type-check
- name: Test
run: yarn nx run-many --target=test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
- name: Build
run: yarn nx run-many --target=build