2021-05-16 21:03:04 +02:00
|
|
|
name: Build/release [linux]
|
2021-03-26 18:03:44 +01:00
|
|
|
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-05-16 21:03:04 +02:00
|
|
|
os: [ubuntu-latest]
|
2021-03-26 18:03:44 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
2021-12-20 09:27:36 +01:00
|
|
|
uses: actions/checkout@v2
|
2021-03-26 18:03:44 +01:00
|
|
|
|
|
|
|
- name: Install Node.js, NPM and Yarn
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2021-06-14 09:11:23 +02:00
|
|
|
node-version: 14
|
2021-11-25 21:37:48 +01:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm i
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm run test
|
2021-03-26 18:03:44 +01:00
|
|
|
|
|
|
|
- name: Build/release Electron app
|
|
|
|
uses: samuelmeuli/action-electron-builder@v1
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.github_token }}
|
2021-04-28 12:11:39 +02:00
|
|
|
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
|