generated from electron-react-boilerplate/electron-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Build and release | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: build-and-release | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-and-release: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
- name: Install Node.js and npm | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: npm | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Build and release the app | ||
env: | ||
GH_TOKEN: ${{ secrets.github_token }} | ||
MARKETEYE_API_KEY: ${{ secrets.MARKETEYE_API_KEY }} | ||
MARKETEYE_API_URL: ${{ secrets.MARKETEYE_API_URL }} | ||
run: npm run package:publish |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: test | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
- name: Install Node.js and npm | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: npm | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Run tests | ||
run: | | ||
npm run package | ||
npm run lint | ||
npm exec tsc | ||
npm test |