File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Server Tests
2+
3+ on :
4+ pull_request :
5+ branches : [ development ]
6+ push :
7+ branches : [ development ]
8+ workflow_dispatch :
9+
10+ jobs :
11+ server-tests :
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout repository
16+ uses : actions/checkout@v4
17+
18+ - name : Set up Java
19+ uses : actions/setup-java@v4
20+ with :
21+ distribution : ' temurin'
22+ java-version : ' 21'
23+
24+ - name : Set up Node.js
25+ uses : actions/setup-node@v4
26+ with :
27+ node-version : ' 20'
28+ cache : ' npm'
29+
30+ - name : Install Node.js dependencies
31+ run : npm ci
32+
33+ - name : Create application directory
34+ run : |
35+ sudo mkdir -p /opt/foam
36+ sudo chown -R $USER /opt/foam
37+
38+ - name : Run server tests
39+ run : ./build.sh server-tests
You can’t perform that action at this time.
0 commit comments