Skip to content

Document the protocol and how this all works #56

Document the protocol and how this all works

Document the protocol and how this all works #56

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build & test
runs-on: ubuntu-latest
container:
image: httptoolkit/act-build-base:v3.0.0
options: --privileged # Required for Frida attach in tests
strategy:
matrix:
node-version: [18.x, v18.16, '*']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: 'package.json'
- run: npm install
- name: 'Allow attaching to running Linux processes'
run: sudo sysctl kernel.yama.ptrace_scope=0
- run: npm test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}