feat: github comment generation and posting #36
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: Run Jest Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
test: | |
permissions: write-all | |
name: Run Jest Tests | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | |
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }} | |
X25519_PRIVATE_KEY: ${{ secrets.X25519_PRIVATE_KEY }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.10.0" | |
- name: Install dependencies | |
run: yarn install | |
- name: Run tests | |
run: yarn test | tee ./coverage.txt && exit ${PIPESTATUS[0]} | |
- name: Jest Coverage Comment | |
# Ensures this step is run even on previous step failure (e.g. test failed) | |
if: always() | |
uses: MishaKav/jest-coverage-comment@main | |
with: | |
coverage-summary-path: coverage/coverage-summary.json | |
junitxml-path: junit.xml | |
junitxml-title: JUnit | |
coverage-path: ./coverage.txt |