Skip to content

Commit

Permalink
fix: improve run test after review
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVarchuk committed Sep 17, 2021
1 parent c8f583c commit 7dc7f54
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 19 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Tests e2e

on: [push]

jobs:
build-and-e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm run bundle
- run: npm run e2e
19 changes: 0 additions & 19 deletions .github/workflows/tests.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Unit Tests

on: [push]

jobs:
build-and-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: npm ci
- run: npm run bundle
- run: npm test

0 comments on commit 7dc7f54

Please sign in to comment.