ci: reduce number of ember-test-audit iterations (#16118)

This commit is contained in:
Luiz Aoqui
2023-02-09 15:28:30 -05:00
committed by GitHub
parent bbf9b073fc
commit 05f6fbc7a1

View File

@@ -2,6 +2,7 @@ name: Ember test audit comparison
on:
pull_request:
paths:
- '.github/workflows/ember*'
- 'ui/**'
defaults:
@@ -24,7 +25,7 @@ jobs:
node-version: '14'
- run: yarn --frozen-lockfile
- run: mkdir -p /tmp/test-reports
- run: npx ember-test-audit 3 --json --output ../base-audit.json
- run: npx ember-test-audit 1 --json --output ../base-audit.json
- name: Upload result
uses: actions/upload-artifact@v2
with:
@@ -41,7 +42,7 @@ jobs:
node-version: '14'
- run: yarn --frozen-lockfile
- run: mkdir -p /tmp/test-reports
- run: npx ember-test-audit 3 --json --output ../pr-audit.json
- run: npx ember-test-audit 1 --json --output ../pr-audit.json
- name: Upload result
uses: actions/upload-artifact@v2
with: