We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812815f commit 00090b5Copy full SHA for 00090b5
.github/workflows/integrate.yml
@@ -5,7 +5,7 @@ on:
5
branches: [ devDocker_v2 ]
6
7
jobs:
8
- testing:
+ frontend_testing:
9
runs-on: ubuntu-latest
10
continue-on-error: true
11
steps:
@@ -16,4 +16,15 @@ jobs:
16
- run: npm ci
17
- run: npm run build
18
- run: npm run test
19
+
20
+ backend_testing:
21
+ runs-on: ubuntu-latest
22
+ continue-on-error: true
23
+ steps:
24
+ - uses: actions/checkout@v2
25
+ - uses: actions/setup-node@v1
26
+ with:
27
+ node-version: 18.17.1
28
+ - run: npm ci
29
+ - run: npm run build
30
- run: cd __backend tests__ && npx jest --__config backend-tests__/jest.config.js --verbose
0 commit comments