Add web-ext and ci artifact generation

This commit is contained in:
Jeremy Plsek
2019-12-29 19:24:05 -05:00
parent 9cb4fd6f79
commit 8d0b032eb6
5 changed files with 7661 additions and 1 deletions

38
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,38 @@
name: CI
on: [push, pull_request]
jobs:
build:
name: Create artifacts
runs-on: ubuntu-latest
steps:
# Initialization
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- run: npm install
- name: Copy configuration
run: cp config.js.example config.js
# Create Chrome artifacts
- name: Create Chrome artifacts
run: npm run build
- uses: actions/upload-artifact@v1
with:
name: Chrome Extension
path: web-ext-artifacts
# Create Firefox artifacts
- name: Move manifest
run: mv manifest.json manifest.json.original
- name: Combine manifest for Firefox
run: jq -s '.[0] * .[1]' manifest.json.original firefox_manifest-extra.json > manifest.json
- name: Create Firefox artifacts
run: npm run build
- uses: actions/upload-artifact@v1
with:
name: Firefox Extension
path: web-ext-artifacts