Skip to content

refactor(git-info): replace custom git collection with Playwright captureGitInfo #347

refactor(git-info): replace custom git collection with Playwright captureGitInfo

refactor(git-info): replace custom git collection with Playwright captureGitInfo #347

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'
- 'ROADMAP.md'
- 'docs/**'
pull_request:
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'
- 'ROADMAP.md'
- 'docs/**'
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 24
- run: npm ci --ignore-scripts
- run: npm audit
- run: npm run build
- run: npm run lint
- run: npm test
docker:
strategy:
fail-fast: false
matrix:
include:
- arch: amd64
runner: ubuntu-24.04
- arch: arm64
runner: ubuntu-24.04-arm
runs-on: ${{ matrix.runner }}
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- name: Build image
run: docker build -t mobilewright:ci .
- name: Smoke test
run: docker run --rm mobilewright:ci help