Skip to content

open float label marker box on the right side of image #118

open float label marker box on the right side of image

open float label marker box on the right side of image #118

Workflow file for this run

name: Vite application
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: client/package-lock.json # Point to the lock file in the client directory
- name: Install dependencies
run: |
cd client
npm install
- name: Run tests
run: |
cd client
npm test