Rate my API workflow #6
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: Check OpenAPI Specs | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: write # Needed for commenting on PRs | |
jobs: | |
check-specs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install typescript ts-node @types/node axios form-data | |
- name: Generate report | |
id: generate-report | |
env: | |
RATEMYOPENAPI_KEY: ${{ secrets.RATEMYOPENAPI_KEY }} | |
run: | | |
# Run the script - logs go to stderr, table to stdout | |
REPORT=$(npx ts-node scripts/generate-matrix.ts 2>/dev/null) | |
if [ $? -ne 0 ]; then | |
echo "Failed to generate report" >&2 | |
exit 1 | |
fi | |
# Only capture the table for GitHub output | |
echo "report<<EOF" >> $GITHUB_OUTPUT | |
echo "$REPORT" >> $GITHUB_OUTPUT | |
echo "EOF" >> $GITHUB_OUTPUT | |
- name: Find Comment | |
uses: peter-evans/find-comment@v2 | |
id: find-comment | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: 'github-actions[bot]' | |
body-includes: "OpenAPI Specification Analysis" | |
- name: Create or Update Comment | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
comment-id: ${{ steps.find-comment.outputs.comment-id || '' }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: ${{ steps.generate-report.outputs.report }} | |
edit-mode: replace |