Skip to content

read data from command #53

read data from command

read data from command #53

Workflow file for this run

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