Skip to content

Test PR

Test PR #20

Workflow file for this run

name: Test PR
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
# 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