Manually filter by pressing 'f', clear all active filters by pressing… #115
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/[email protected] | |
- name: npm install | |
run: | | |
npm install | |
- name: npm firefox | |
run: | | |
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/[email protected] | |
- name: npm install | |
run: | | |
npm install | |
- name: npm firefox-dev | |
run: | | |
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/[email protected] | |
- name: npm install | |
run: | | |
npm install | |
- name: npm chrome | |
run: | | |
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/[email protected] | |
- name: npm install | |
run: | | |
npm install | |
- name: npm chrome-dev | |
run: | | |
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/[email protected] | |
- name: npm install | |
run: | | |
npm install | |
- name: npm webext | |
run: | | |
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/[email protected] | |
- name: npm install | |
run: | | |
npm install | |
- name: npm webext-dev | |
run: | | |
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/**/* |