Skip to content

Commit 253756d

Browse files
TheZokeredgarmueller
authored andcommitted
Add github workflow
1 parent 464e935 commit 253756d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Build & Test
2+
on: push
3+
4+
jobs:
5+
main:
6+
name: Main
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: '10.x'
13+
- run: npm ci
14+
- run: npm run test-cypress

0 commit comments

Comments
 (0)