Skip to content

Commit

Permalink
ci: amend build command
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma11hewThomas committed Dec 8, 2024
1 parent 0d80899 commit 21c2e43
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ai.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/custom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/detailed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/failed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flaky.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/historical.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/skipped.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 21c2e43

Please sign in to comment.