Skip to content

Commit

Permalink
Update client.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bcd00 authored Jan 30, 2024
1 parent 076b460 commit efb03c1
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,20 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: scp ${{ secrets.LOCAL_FILE }} ${{ secrets.REMOTE }}
- run: npm install --legacy-peer-deps --silent
- run: npx nx run ove-client:build
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: ./node_modules
key: modules-${{ hashFiles("package-lock.json") }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install --legacy-peer-deps --silent
- name: Lint Electron
run: nx run ove-client:lint
- name: Lint Electron UI
run: nx run ove-client-ui:lint
- name: Build client
run: npx nx run ove-client:build
- name: Make client
run: npx nx run ove-client:make

0 comments on commit efb03c1

Please sign in to comment.