File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 66 - master
77 - next
88
9+
10+
911jobs :
12+ test-integration :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+ - name : Node setup
17+ uses : actions/setup-node@v4
18+ with :
19+ node-version : 22
20+ - name : Python setup
21+ uses : actions/setup-python@v5
22+ with :
23+ python-version : 3.12
24+ - name : Install python dependencies
25+ run : |
26+ cd ./tests/integration/microservices/viewer
27+ python3 -m venv venv
28+ source venv/bin/activate
29+ pip install -r requirements.txt
30+ - name : Install and run tests
31+ run : |
32+ npm i
33+
34+ npm run test:integration
1035 test :
1136 uses : Geode-solutions/actions/.github/workflows/js-test.yml@master
1237 with :
Original file line number Diff line number Diff line change 22 "name" : " @geode/opengeodeweb-front" ,
33 "scripts" : {
44 "lint" : " eslint --fix --ext .js,.vue --ignore-path .gitignore ." ,
5- "test" : " vitest --config ./tests/vitest.config.js " ,
5+ "test" : " npm run test:unit " ,
66 "test:unit" : " npm run test --project unit" ,
77 "test:integration" : " npm run test --project integration" ,
88 "coverage" : " vitest run --coverage" ,
You can’t perform that action at this time.
0 commit comments