Remove test reporter #10
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
name: 'Full Dagger Pipeline' | |
on: | |
push: | |
branches: | |
- dagger-ci | |
jobs: | |
pipeline: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'pipeline' | |
uses: dagger/[email protected] | |
with: | |
# Dagger Version | |
version: 0.14.0 | |
# Dagger CLI Flags | |
#dagger-flags: # optional, default is --progress plain | |
# CLI verb (call, run, download, up, functions, shell, query) | |
verb: call | |
# The working directory in which to run the Dagger CLI | |
workdir: . | |
# Dagger Cloud Token | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
# Dagger module to call. Local or Git | |
module: . | |
# Arguments to pass to CLI | |
args: ci-integration --dir=./ | |
# - name: Test Reporter | |
# uses: dorny/[email protected] | |
# with: | |
# name: JEST Tests # Name of the check run which will be created | |
# path: reports/jest-*.xml # Path to test results | |
# reporter: jest-junit # Format of test results |