Skip to content

Commit 00090b5

Browse files
committed
added continue-on-error to cicd
1 parent 812815f commit 00090b5

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/integrate.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [ devDocker_v2 ]
66

77
jobs:
8-
testing:
8+
frontend_testing:
99
runs-on: ubuntu-latest
1010
continue-on-error: true
1111
steps:
@@ -16,4 +16,15 @@ jobs:
1616
- run: npm ci
1717
- run: npm run build
1818
- 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
1930
- run: cd __backend tests__ && npx jest --__config backend-tests__/jest.config.js --verbose

0 commit comments

Comments
 (0)