Skip to content

Bump vite from 7.1.9 to 7.1.11 in the npm_and_yarn group across 1 directory #95

Bump vite from 7.1.9 to 7.1.11 in the npm_and_yarn group across 1 directory

Bump vite from 7.1.9 to 7.1.11 in the npm_and_yarn group across 1 directory #95

Workflow file for this run

name: Run Code Analysis
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
tags:
- "v*"
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Dependencies
run: make install
- name: Run Linter Checks
run: make lint
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install Dependencies
run: make install
- name: Run Typechecking Checks
run: make typecheck