We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9fac6c0 + 1ac46fe commit ed1c434Copy full SHA for ed1c434
2 files changed
.github/workflows/tests.yml
@@ -1,8 +1,21 @@
1
name: Tests
2
3
-on: push
+on:
4
+ push:
5
+ branches-ignore:
6
+ - 'master'
7
8
jobs:
9
+ units:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
+ - name: Install modules
15
+ run: npm install
16
+ - name: Run tests
17
+ run: npm test -- -u
18
+
19
cypress-run:
20
runs-on: ubuntu-latest
21
steps:
package.json
@@ -117,6 +117,9 @@
117
},
118
"jest": {
119
"preset": "jest-preset-angular",
120
+ "testMatch": [
121
+ "<rootDir>/src/**/*.spec.ts"
122
+ ],
123
"setupFilesAfterEnv": [
124
"<rootDir>/setup-jest.ts"
125
]
0 commit comments