mirror of
https://github.com/momenbasel/keyFinder.git
synced 2026-06-08 00:53:55 +02:00
c43b913943
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
920 B
YAML
33 lines
920 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Validate manifest JSON
|
|
run: |
|
|
python3 -c "import json,sys; json.load(open('manifest.json'))"
|
|
python3 -c "import json,sys; json.load(open('manifest.firefox.json'))"
|
|
|
|
- name: Manifest versions must match
|
|
run: |
|
|
C=$(python3 -c "import json; print(json.load(open('manifest.json'))['version'])")
|
|
F=$(python3 -c "import json; print(json.load(open('manifest.firefox.json'))['version'])")
|
|
[ "$C" = "$F" ] || { echo "Chrome=$C Firefox=$F"; exit 1; }
|
|
|
|
- name: Build runs cleanly
|
|
run: bash scripts/build.sh
|
|
|
|
- name: Install web-ext
|
|
run: npm install -g web-ext
|
|
|
|
- name: web-ext lint (Firefox)
|
|
run: web-ext lint --source-dir dist/firefox --self-hosted
|