Skip to content

Add get-replay tool #75

Add get-replay tool

Add get-replay tool #75

Workflow file for this run

name: CI
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Format check
run: npm run format
- name: Type check
run: npx tsc --noEmit
- name: Run tests with coverage
run: npm run test:coverage
env:
ROLLBAR_ACCESS_TOKEN: not-a-token
- name: Run end-to-end tests
run: npm run test:e2e
env:
ROLLBAR_E2E_READ_TOKEN: ${{ secrets.ROLLBAR_E2E_READ_TOKEN }}