fix: enable persistent background script for Firefox #145
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Use Node.js 23.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 23.x | |
cache: npm | |
- name: Build Firefox | |
run: make build-firefox | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: firefox | |
path: artifacts/firefox.zip | |
- name: Check reproducibility from src-zip | |
run: make test-reproducibility-firefox | |
- name: Build Chrome | |
run: make build-chrome | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: chrome | |
path: artifacts/chrome.zip | |
- name: Check reproducibility from src-zip | |
run: make test-reproducibility-chrome | |
typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Use Node.js 23.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 23.x | |
cache: npm | |
- name: Install dependencies | |
run: make install | |
- name: Typecheck TypeScript | |
run: make compile |