Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
bcd00 committed Feb 13, 2024
2 parents 4b708f3 + 3bd8d1b commit ede6aac
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: npx nx run ove-client:lint
- name: Lint Electron UI
run: npx 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:package

0 comments on commit ede6aac

Please sign in to comment.