diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e19035..92fdbe3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,15 @@ on: - master - next jobs: + cypress-run: + runs-on: ubuntu-16.04 + # let's make sure our tests pass on Chrome browser + name: E2E on Chrome + steps: + - uses: actions/checkout@v1 + - uses: cypress-io/github-action@v2 + with: + browser: chrome release: name: Run test and Release runs-on: ubuntu-18.04 @@ -19,8 +28,6 @@ jobs: run: npm ci - name: Run unit tests run: npm run test --verbose - - name: Run e2e - run: npm run test:e2e - name: Build Library run: npm run build - name: Build Types Declarations