From 21c2e4333b94425b470ba3ec5411820eae65c0a3 Mon Sep 17 00:00:00 2001 From: Matthew Thomas Date: Sun, 8 Dec 2024 12:18:05 +0000 Subject: [PATCH] ci: amend build command --- .github/workflows/ai.yaml | 2 +- .github/workflows/custom.yaml | 2 +- .github/workflows/detailed.yaml | 2 +- .github/workflows/failed.yaml | 2 +- .github/workflows/flaky.yaml | 2 +- .github/workflows/historical.yaml | 2 +- .github/workflows/main.yaml | 2 +- .github/workflows/skipped.yaml | 2 +- .github/workflows/suite.yaml | 2 +- .github/workflows/test.yaml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ai.yaml b/.github/workflows/ai.yaml index dc6ecce6..162b84b9 100644 --- a/.github/workflows/ai.yaml +++ b/.github/workflows/ai.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test ai with title run: node dist/core/cli.js ai ctrf-reports/ctrf-report-no-fails.json --title "AI Summary With Title" - name: Upload test results diff --git a/.github/workflows/custom.yaml b/.github/workflows/custom.yaml index a69d13f2..fe003c13 100644 --- a/.github/workflows/custom.yaml +++ b/.github/workflows/custom.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test custom summary hbs file run: node dist/core/cli.js custom ctrf-reports/ctrf-report.json templates/custom-summary.hbs if: github.event_name != 'schedule' diff --git a/.github/workflows/detailed.yaml b/.github/workflows/detailed.yaml index f2f44e01..942bbf93 100644 --- a/.github/workflows/detailed.yaml +++ b/.github/workflows/detailed.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test detailed with title run: node dist/core/cli.js tests ctrf-reports/ctrf-report.json --title "Detailed With Title" - name: Test list diff --git a/.github/workflows/failed.yaml b/.github/workflows/failed.yaml index 30b38774..c4635300 100644 --- a/.github/workflows/failed.yaml +++ b/.github/workflows/failed.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test failed with title run: node dist/core/cli.js failed ctrf-reports/ctrf-report.json --title "Failed With Title" - name: Test failed folded diff --git a/.github/workflows/flaky.yaml b/.github/workflows/flaky.yaml index 1d0e09c6..0dc42e36 100644 --- a/.github/workflows/flaky.yaml +++ b/.github/workflows/flaky.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test flaky with title run: node dist/core/cli.js flaky ctrf-reports/ctrf-report.json --title "Flaky With Title" - name: Test flaky with out title diff --git a/.github/workflows/historical.yaml b/.github/workflows/historical.yaml index e62e7443..5611b59a 100644 --- a/.github/workflows/historical.yaml +++ b/.github/workflows/historical.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test historical run: node dist/core/cli.js historical ctrf-reports/ctrf-report.json --annotate false if: github.event_name != 'schedule' diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 32d947d8..00ca36b0 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -19,7 +19,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test summary run: node dist/core/cli.js summary ctrf-reports/ctrf-report.json - name: Test historical diff --git a/.github/workflows/skipped.yaml b/.github/workflows/skipped.yaml index b8c52c97..cb6a9035 100644 --- a/.github/workflows/skipped.yaml +++ b/.github/workflows/skipped.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test skipped with title run: node dist/core/cli.js skipped ctrf-reports/ctrf-report.json --title "Skipped With Title" - name: Test failed no title diff --git a/.github/workflows/suite.yaml b/.github/workflows/suite.yaml index 2be01a1f..781f8457 100644 --- a/.github/workflows/suite.yaml +++ b/.github/workflows/suite.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Test suite folded with filepath run: node dist/core/cli.js suite-folded ctrf-reports/ctrf-report.json --title "Suite folded" - name: Test suite folded with suite diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0dc5460a..7c3505a0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: npx tsc + run: npm run build - name: Lint run: npm run lint - name: Format