Skip to content

Commit

Permalink
Update deployment.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mqxx committed Sep 2, 2023
1 parent 3130999 commit c29d739
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ permissions:
contents: read
pages: write
id-token: write
checks: write

concurrency:
group: "pages"
Expand All @@ -40,13 +41,15 @@ jobs:
run: deno lint

- name: Run tests
run: deno test -A --unstable --check --reload --doc --allow-none --reporter=junit --junit-path=./report.xml
run: |
mkdir reports
deno test -A --unstable --check --reload --doc --allow-none --reporter=junit --junit-path=./reports/report.xml
- name: Report tests (report.xml)
uses: dorny/test-reporter@v1
with:
name: Deno Test Report
path: ./report.xml
path: ./reports/report.xml
reporter: jest-junit

deploy:
Expand Down

0 comments on commit c29d739

Please sign in to comment.