We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d28913 commit 79ec32eCopy full SHA for 79ec32e
.github/workflows/test_cucumber.yml
@@ -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
@@ -1,15 +1,13 @@
-name: Run tests
+name: test unit
on:
push:
branches: [ master ]
- workflow_dispatch:
-
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- - name: Run a multi-line script
+ - name: Run unit test
run: |
npm install
15
npm run build
0 commit comments