read data from command #53
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Run Deno tests | |
run: deno test --allow-env --allow-run --allow-read --allow-write --junit-path reports/junit.xml | |
- name: Upload test results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: junit-results | |
path: reports/junit.xml | |
- name: Annotate failed tests | |
if: always() # Run with test/lint failures. | |
uses: granodigital/report-annotate@v1.0.1 | |
with: | |
reports: | | |
junit|reports/junit.xml |