Skip to content

Bump vite from 5.4.11 to 5.4.14 (#179) #532

Bump vite from 5.4.11 to 5.4.14 (#179)

Bump vite from 5.4.11 to 5.4.14 (#179) #532

Workflow file for this run

name: Build
# Run this workflow every time a new commit pushed to your repository
on:
push:
jobs:
tests:
runs-on: ubuntu-20.04
name: Build
steps:
# Checks out a copy of your repository on the ubuntu machine
- name: Checkout code
uses: actions/checkout@v2
- name: Setup npm
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Tests
run: |
make test