Skip to content

Commit

Permalink
feat: github actions to build browser extension for pull requests (#373)
Browse files Browse the repository at this point in the history
Builds the extension for firefox and chrome and adds a link to them under the PR comments section.
  • Loading branch information
aatmanvaidya authored and duggalsu committed Oct 24, 2023
1 parent 29e4b79 commit 4278e68
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/build-pr-review-both-browsers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: "Build For PR Review - Both Browsers"

on:
pull_request:
branches:
- main

jobs:
chrome-publish:
name: "Build For PR Review"
runs-on: "ubuntu-latest"

steps:
- name: "Checkout Development Branch"
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Get commit SHA
shell: bash
run: |
echo "setting variables"
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
- name: "Build and Test"
run: |
cd browser-extension/plugin
ls
pwd
npm install
npm run build
mv dist/ extension-chrome/
npm run build:firefox
mv dist/ extension-firefox/
- name: "Upload dist folder as artifact"
uses: actions/upload-artifact@v3
with:
name: extension-artifcats
path: |
browser-extension/plugin/extension-firefox/
browser-extension/plugin/extension-chrome/
- name: Create PR Comment with Artifact Link
uses: actions/github-script@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const artifact_url = `https://github.com/${{github.repository_owner}}/${{github.event.repository.name}}/actions/runs/${{ github.run_id }}`;
const comment_body = `🛠 Your build files are available [here](${artifact_url}).`;
await github.rest.issues.createComment({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: comment_body
});

0 comments on commit 4278e68

Please sign in to comment.