Skip to content

Commit 7949d80

Browse files
Changed the github actions workflow
Signed-off-by: Anshukumar123975 <[email protected]>
1 parent 2068005 commit 7949d80

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

.github/workflows/bdd.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Run Conformance Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
pull_request:
8+
branches:
9+
- '**'
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout Repository
17+
uses: actions/checkout@v4
18+
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '18'
23+
24+
- name: Install Dependencies
25+
run: npm install
26+
27+
- name: Run Cucumber BDD Tests
28+
run: npm run bdd

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ jobs:
2727
- name: Run Unit Tests
2828
run: npm test
2929

30-
- name: Run Cucumber BDD Tests
31-
run: npm run bdd

0 commit comments

Comments
 (0)