Remove browser_style
for options_ui
(#272)
#59
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
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { MANAGER: "npm", FLAGS: "--global", RUN: "web-ext", RUNFLAGS: "lint" } | |
- { MANAGER: "npm", FLAGS: "--global", RUN: "eslint", RUNFLAGS: "." } | |
- { MANAGER: "pip", FLAGS: "", RUN: "html5validator", RUNFLAGS: "--show-warnings --root ." } | |
- { MANAGER: "pip", FLAGS: "", RUN: "html5validator", RUNFLAGS: "--show-warnings --skip-non-css --root .", ALLOWFAILURE: "true" } | |
- { MANAGER: "pip", FLAGS: "", RUN: "html5validator", RUNFLAGS: "--show-warnings --skip-non-svg --root .", ALLOWFAILURE: "true" } | |
name: ${{ matrix.config.RUN }} ${{ matrix.config.RUNFLAGS }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
- name: Install ${{ matrix.config.RUN }} | |
run: | | |
set -e | |
${{ matrix.config.MANAGER }} install ${{ matrix.config.RUN }} ${{ matrix.config.FLAGS }} | |
${{ matrix.config.RUN }} --version | |
${{ matrix.config.RUN }} --help | |
- name: Run tests | |
run: | | |
set -e | |
if [[ -z "${{ matrix.config.ALLOWFAILURE }}" ]]; then ${{ matrix.config.RUN }} ${{ matrix.config.RUNFLAGS }} ; fi; | |
if [[ -n "${{ matrix.config.ALLOWFAILURE }}" ]]; then ${{ matrix.config.RUN }} ${{ matrix.config.RUNFLAGS }} || true ; fi; | |
deploy: | |
runs-on: ubuntu-22.04 | |
name: Deploy | |
needs: tests | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: "50" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
- name: Install web-ext | |
run: | | |
set -e | |
npm install -g web-ext | |
web-ext --version | |
- name: Deploy | |
env: | |
BOT_USERNAME: ${{ vars.BOT_USERNAME }} | |
BOT_TOKEN: ${{ secrets.BOT_TOKEN }} | |
BOT_NAME: ${{ vars.BOT_NAME }} | |
BOT_EMAIL: ${{ vars.BOT_EMAIL }} | |
AMO_API_USER: ${{ secrets.AMO_API_USER }} | |
AMO_API_SECRET: ${{ secrets.AMO_API_SECRET }} | |
run: | | |
set -e | |
if [[ ! "${{ github.ref }}" == "refs/tags"* ]] && [[ "$(git diff --name-only ${{ github.sha }}^ -- manifest.json)" == "" ]]; then echo "Neither tag nor dev release. Exiting ..."; exit 0; fi; | |
python dev/script/check_manifest_version_values.py ; | |
if [[ ! "${{ github.ref }}" == "refs/tags"* ]]; then | |
python dev/script/prepare_dev_release.py ; | |
web-ext sign --api-key=${AMO_API_USER} --api-secret=${AMO_API_SECRET} --channel unlisted --artifacts-dir "artifacts" ; | |
git clone https://${BOT_USERNAME}:${BOT_TOKEN}@github.com/Croydon/vtr-releases.git vtr-releases ; | |
mv -v artifacts/* vtr-releases/files/ ; | |
python dev/script/create_dev_release.py ; | |
cd vtr-releases ; | |
git config --global user.name ${BOT_NAME} ; | |
git config --global user.email ${BOT_EMAIL} ; | |
git add -A ; | |
git commit -am "Automatically publish new version" ; | |
git push ; | |
else | |
web-ext sign --api-key=${AMO_API_USER} --api-secret=${AMO_API_SECRET} || true ; | |
fi |