Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 7c80391

Browse files
committed
fix(ci): added cypress job on release
1 parent ff62de0 commit 7c80391

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/release.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ on:
55
- master
66
- next
77
jobs:
8+
cypress-run:
9+
runs-on: ubuntu-16.04
10+
# let's make sure our tests pass on Chrome browser
11+
name: E2E on Chrome
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: cypress-io/github-action@v2
15+
with:
16+
browser: chrome
817
release:
918
name: Run test and Release
1019
runs-on: ubuntu-18.04
@@ -19,8 +28,6 @@ jobs:
1928
run: npm ci
2029
- name: Run unit tests
2130
run: npm run test --verbose
22-
- name: Run e2e
23-
run: npm run test:e2e
2431
- name: Build Library
2532
run: npm run build
2633
- name: Build Types Declarations

0 commit comments

Comments
 (0)