Skip to content

build(deps-dev): bump vite from 5.4.0 to 5.4.6 in /starsky/starsky/clientapp #1768

build(deps-dev): bump vite from 5.4.0 to 5.4.6 in /starsky/starsky/clientapp

build(deps-dev): bump vite from 5.4.0 to 5.4.6 in /starsky/starsky/clientapp #1768

name: ClientApp React Windows CI
# see also Linux CI
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [ master ]
paths:
- 'starsky/starsky/clientapp/**'
pull_request:
branches: [ master ]
paths:
- 'starsky/starsky/clientapp/**'
- '.github/workflows/**'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Build ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules clientapp
uses: actions/cache@v4
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-clientapp-${{ hashFiles('./starsky/starsky/clientapp/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-clientapp-
- name: Install Dependencies
working-directory: ./starsky/starsky/clientapp
run: npm ci --no-progress --prefer-offline --legacy-peer-deps --no-fund
- name: NpmBuild
working-directory: ./starsky/starsky/clientapp
run: npm run build
- name: NpmTest
working-directory: ./starsky/starsky/clientapp
run: npm run test:ci