We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af2dac3 + 95918ed commit 4db21dbCopy full SHA for 4db21db
.github/workflows/build-lint-test.yml
@@ -27,10 +27,26 @@ jobs:
27
env:
28
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY}}
29
30
+ - name: Set up Node environment
31
+ uses: actions/setup-node@v2
32
+ with:
33
+ node-version: 20
34
+
35
+ - name: Install Prism
36
+ run: npm install -g @stoplight/prism-cli
37
38
+ - name: Start PRISM Server
39
+ run: ./start-prism.sh & sleep 15
40
+ working-directory: Xero-Java/src/test/java/com/xero/api/util
41
42
- name: Build and test post generation
43
run: |
44
export GPG_TTY=$(tty)
- mvn clean verify -DskipTests=true
45
+ mvn clean verify
46
47
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
48
working-directory: Xero-Java
49
50
+ - name: Stop PRISM
51
+ run: pkill -f prism
52
+ working-directory: Xero-Java
0 commit comments