Merge pull request #1713 from qdraw/dependabot/npm_and_yarn/starsky/s… #1765
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |