Skip to content

Merge branch 'main' into test-pr-changes #27

Merge branch 'main' into test-pr-changes

Merge branch 'main' into test-pr-changes #27

Workflow file for this run

name: Test PR
on:
push:
branches: ["test-pr-changes"]
pull_request:
branches: ["test-pr-changes"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js version
uses: actions/setup-node@v4
with:
node-version: 20
cache: ''
- run: npm install
- run: npm run build
- run: npm run test-pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FORCE_COLOR: true
- name: Generate list using Markdown
run: |
cat docs/pr/coverage-summary.md >> $GITHUB_STEP_SUMMARY
cat docs/pr/coverage-details.md >> $GITHUB_STEP_SUMMARY