Skip to content

run npm install in client folder for github workflow #2

run npm install in client folder for github workflow

run npm install in client folder for github workflow #2

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'
- name: Install dependencies
run: |
cd client
npm install
- name: Run tests
run: |
cd client
npm test