Fixed rename icon; added more hooks for detecting page navigation; up… #114
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: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
firefox: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- uses: jetli/wasm-pack-action@v0.4.0 | |
- name: npm install | |
run: | | |
npm install | |
- name: npm firefox | |
run: | | |
npm run build:v2-compat -- firefox | |
npm run build:firefox | |
mv dist/ firefox/ | |
npm run clean | |
- name: artifact firefox | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firefox | |
path: firefox/**/* | |
firefox-dev: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- uses: jetli/wasm-pack-action@v0.4.0 | |
- name: npm install | |
run: | | |
npm install | |
- name: npm firefox-dev | |
run: | | |
npm run build:v2-compat -- firefox.dev | |
npm run build:firefox.dev | |
mv dist/ firefox-dev/ | |
npm run clean | |
- name: artifact firefox-dev | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firefox-dev | |
path: firefox-dev/**/* | |
chrome: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- uses: jetli/wasm-pack-action@v0.4.0 | |
- name: npm install | |
run: | | |
npm install | |
- name: npm chrome | |
run: | | |
npm run build:v2-compat -- chrome | |
npm run build:chrome | |
mv dist/ chrome/ | |
npm run clean | |
- name: artifact chrome | |
uses: actions/upload-artifact@v3 | |
with: | |
name: chrome | |
path: chrome/**/* | |
chrome-dev: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- uses: jetli/wasm-pack-action@v0.4.0 | |
- name: npm install | |
run: | | |
npm install | |
- name: npm chrome-dev | |
run: | | |
npm run build:v2-compat -- chrome.dev | |
npm run build:chrome.dev | |
mv dist/ chrome-dev/ | |
npm run clean | |
- name: artifact chrome-dev | |
uses: actions/upload-artifact@v3 | |
with: | |
name: chrome-dev | |
path: chrome-dev/**/* | |
webext: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- uses: jetli/wasm-pack-action@v0.4.0 | |
- name: npm install | |
run: | | |
npm install | |
- name: npm webext | |
run: | | |
npm run build:v2-compat -- webext | |
npm run build:webext | |
mv dist/ webext/ | |
npm run clean | |
- name: artifact webext | |
uses: actions/upload-artifact@v3 | |
with: | |
name: webext | |
path: webext/**/* | |
webext-dev: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- uses: jetli/wasm-pack-action@v0.4.0 | |
- name: npm install | |
run: | | |
npm install | |
- name: npm webext-dev | |
run: | | |
npm run build:v2-compat -- webext.dev | |
npm run build:webext.dev | |
mv dist/ webext-dev/ | |
npm run clean | |
- name: artifact webext-dev | |
uses: actions/upload-artifact@v3 | |
with: | |
name: webext-dev | |
path: webext-dev/**/* |