Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshk-tw committed Oct 23, 2024
1 parent 2dced9d commit fc0034b
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/build-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,24 @@ jobs:
# run: dotnet format --verify-no-changes
# working-directory: Xero-NetStandard

# - name: Run Test
# run: dotnet test
# working-directory: Xero-NetStandard
- name: Set up Node environment
uses: actions/setup-node@v2
with:
node-version: 20

- name: Install Prism
run: npm install -g @stoplight/prism-cli

- name: Start PRISM Server
run: |
./start-prism.sh & sleep 15
working-directory: Xero-NetStandard/Xero.NetStandard.OAuth2.Test/util

- name: Run Test
run: dotnet test
working-directory: Xero-NetStandard

- name: Stop PRISM
if: success() || failure()
run: pkill -f prism
working-directory: Xero-NetStandard

0 comments on commit fc0034b

Please sign in to comment.