[chore]: add Just for build script modification #54
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: Desktop App | |
on: | |
push: | |
branches: | |
- v1.0 | |
pull_request: | |
branches: | |
- v1.0 | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: npm ci | |
working-directory: ui/desktop | |
- name: Package application | |
run: npm run package | |
working-directory: ui/desktop | |
- name: Run E2E tests | |
run: npm run test-e2e | |
working-directory: ui/desktop |