Skip to content

Commit c1ba0e2

Browse files
committed
feat(ci): add automatic test triggered each push
1 parent 89525ab commit c1ba0e2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI Electron test
2+
3+
on: [push]
4+
5+
jobs:
6+
linuxBuild:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
- uses: actions/setup-node@master
12+
with:
13+
node-version: 16
14+
- name: Install dependencies
15+
run: yarn install
16+
- name: Test commit ${{ github.sha }}
17+
run: yarn run test

0 commit comments

Comments
 (0)