Skip to content

Commit 3b5a2b5

Browse files
committed
cicd, testing integration of pull request on devdockerv2
1 parent 6da32d4 commit 3b5a2b5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/integrate.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Frontend and Backend testing
2+
3+
on:
4+
pull_request:
5+
branches: [ devDocker_v2 ]
6+
7+
jobs:
8+
testing:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 18.17.1
15+
- run: npm ci
16+
- run: npm run build
17+
- run: npm run test
18+
- run: cd __backend tests__ && npx jest --__config backend-tests__/jest.config.js --verbose

0 commit comments

Comments
 (0)