Skip to content

Commit 79ec32e

Browse files
author
maxime.dharboulle
committed
separate CI tests
1 parent 2d28913 commit 79ec32e

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: test cucumber
2+
on:
3+
push:
4+
branches: [ master ]
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Run cucumber test
11+
run: |
12+
npm install
13+
npm run build
14+
npm run test:cucumber

.github/workflows/run_tests.yml renamed to .github/workflows/test_unit.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
name: Run tests
1+
name: test unit
22
on:
33
push:
44
branches: [ master ]
5-
workflow_dispatch:
6-
75
jobs:
86
test:
97
runs-on: ubuntu-latest
108
steps:
119
- uses: actions/checkout@v2
12-
- name: Run a multi-line script
10+
- name: Run unit test
1311
run: |
1412
npm install
1513
npm run build

0 commit comments

Comments
 (0)