chore(deps-dev): bump @types/node from 22.7.7 to 22.8.1 #433
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: Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
checks: write | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup host | |
uses: ./.github/actions/setup-host | |
- name: Build | |
run: npm run build | |
- name: Report to Check | |
uses: ./. | |
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | |
with: | |
checkName: "Test Reports (full)" | |
reports: | | |
samples/ | |
testsSummary: full | |
- name: Report to Check (Omit ✅ passed) | |
uses: ./. | |
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | |
with: | |
checkName: "Test Reports (omitting passed)" | |
reports: | | |
samples/ | |
testsSummary: full | |
filterPassedTests: true | |
- name: Report to Check (Computing Flaky) | |
uses: ./. | |
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | |
with: | |
checkName: "Test Reports (computing flaky)" | |
reports: | | |
samples/ | |
testsSummary: full | |
detectFlakyTests: true | |
- name: Report to Check (PR filtered) | |
uses: ./. | |
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | |
with: | |
checkName: "Test Reports (PR filtered)" | |
reports: | | |
samples/[!TEST]*.xml | |
filterChecks: true | |
- name: Report to Check (No Reports) | |
uses: ./. | |
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | |
with: | |
checkName: "Test Reports (No Reports)" | |
reports: | | |
non-existing-folder/*.xml | |
failIfNoReportsFound: true | |
continue-on-error: true | |
- name: Report to Check (GitHub App) | |
uses: ./. | |
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | |
with: | |
appId: 925397 | |
appSecret: ${{ secrets.GH_APP_SECRET }} | |
checkName: "Test Reports (GitHub App)" | |
reports: | | |
samples/ | |
- name: Run integrations tests | |
if: ${{ github.event_name == 'pull_request' }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
COMMIT_SHA: ${{ github.event.pull_request.head.sha }} | |
run: npm run intTest | |
- name: Report to PR | |
uses: ./. | |
if: ${{ !cancelled() }} | |
with: | |
reports: | | |
lib/*-junit.xml | |
- name: Coverage report | |
uses: codecov/codecov-action@v4 | |
if: ${{ !cancelled() }} | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |