Skip to content

Commit

Permalink
feat: Add a Workflow to test Pull Requests
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed May 6, 2024
1 parent 91f1aab commit 305d4c3
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build and Test

on:
pull_request:
branches:
- main

jobs:
build:
name: Build and Test
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: latest

- name: Set up PNPM
uses: pnpm/action-setup@v3
with:
version: latest

- name: Install dependencies
run: pnpm install

- name: Build project
run: pnpm run docs:build

- name: Check status and comment
if: ${{ always() }}
uses: actions/github-script@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const result = process.env['GITHUB_RUN_CONCLUSION'];
const context = github.context;
const octokit = new github.GitHub(process.env.GITHUB_TOKEN);
if (context.eventName === 'pull_request') {
const prNumber = context.payload.pull_request.number;
octokit.issues.createComment({
...context.repo,
issue_number: prNumber,
body: result === 'success' ? 'The build was successful!' : 'The build failed!'
});
}

0 comments on commit 305d4c3

Please sign in to comment.