Skip to content

chore(deps): bump vite from 5.1.3 to 5.1.7 #11

chore(deps): bump vite from 5.1.3 to 5.1.7

chore(deps): bump vite from 5.1.3 to 5.1.7 #11

Workflow file for this run

name: CI
on:
# Runs when a push is done to dev
push:
branches: [master]
# Runs when a PR is created to dev
pull_request:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Use node 20
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install packages
run: npm ci
- name: Check linter
run: npm run lint --workspaces --if-present
- name: Build
run: npm run build --workspaces --if-present