Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmod committed Sep 6, 2023
1 parent eab1d9a commit 8198b56
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/upload-builds-mv3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Upload builds

on:
push

jobs:
upload-builds-mv3:
runs-on: ubuntu-latest
defaults:
run:
working-directory: extension-manifest-v3
steps:
- uses: jwalton/gh-find-current-pr@v1
id: findPr
with:
state: open
- run: exit 1
if: steps.findPr.outputs.number == null
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '19.8.1'
cache: 'npm'
cache-dependency-path: ./package-lock.json
- name: Install dependencies in repo root
run: npm ci
working-directory: .
- name: Build packages
run: npm run package
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
pr_number: ${{ steps.findPr.outputs.pr }}
message: |
Hello world ${{ steps.findPr.outputs.pr }} ! :wave:

0 comments on commit 8198b56

Please sign in to comment.