feat: github actions to build browser extension for pull requests #4
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: "Build For PR Review - Chrome" | |
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@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- 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 | |
- name: "Upload extension.zip as artifact" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: extension-chrome | |
path: browser-extension/plugin/dist/ | |
- 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 for CHROME 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 | |
}); |