Skip to content

build(deps-dev): Bump vite from 5.2.11 to 5.4.6 in /examples/react-ts #242

build(deps-dev): Bump vite from 5.2.11 to 5.4.6 in /examples/react-ts

build(deps-dev): Bump vite from 5.2.11 to 5.4.6 in /examples/react-ts #242

Workflow file for this run

# This workflow will do a clean install of Node dependencies, build the source code and run tests across different versions of Node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, current]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build packages
run: lerna run build
- name: Run tests
run: npm test