Skip to content

README: restore firefox-related info #270

README: restore firefox-related info

README: restore firefox-related info #270

Workflow file for this run

name: CI
on:
push:
branches: ['master']
pull_request:
branches: ['master']
workflow_dispatch:
jobs:
build:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
host/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('host/Cargo.lock') }}
- run: cargo build
working-directory: ./host
- run: cargo test
working-directory: ./host
- run: npm ci
working-directory: ./extension
- run: npm run create-host-manifest
working-directory: ./extension
- run: npx playwright install --with-deps chromium
working-directory: ./extension
- run: npm run check
working-directory: ./extension
- run: npm test
working-directory: ./extension
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: extension/playwright-report/
retention-days: 30