Test reporter on test repo #31
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
name: Test reporter on test repo | |
on: | |
workflow_dispatch: | |
inputs: | |
node-version: | |
required: true | |
type: string | |
description: Node version to use | |
default: '16.x' | |
jobs: | |
test_run: | |
name: Test reporter on test repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ inputs.node-version }} | |
- name: Install internal repo dependencies | |
run: | | |
cd test_repo/test-app | |
npm ci | |
- name: Install dependencies | |
run: npm ci | |
- name: Build Typescript | |
run: npm run build | |
- name: Run integration test with default reporter | |
run: npm run integration-base | |
continue-on-error: true | |
env: | |
FORCE_COLOR: 3 | |
- name: Run integration test with new reporter | |
run: npm run integration-new | |
continue-on-error: true | |
env: | |
FORCE_COLOR: 3 |