Add support for PSD to display in files && fix fileListCache issue #1802
Workflow file for this run
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 Linux CI | |
# see also Windows CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ release/* ] | |
paths: | |
- 'starsky/starsky/clientapp/**' | |
pull_request: | |
branches: [ master ] | |
paths: | |
- 'starsky/starsky/clientapp/**' | |
- '.github/workflows/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x, 20.x, 18.x, 16.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 |