Skip to content

fix: add ignored status for crash details #10

fix: add ignored status for crash details

fix: add ignored status for crash details #10

Workflow file for this run

name: PR Checks
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
persist-credentials: false
# Pin to Node.js 22.12 as 22.18+ breaks tsconfig-paths/register functionality
- uses: actions/setup-node@v4
with:
node-version: "22.12"
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm test
- name: E2E
run: npm run e2e
env:
BUGSPLAT_HOST: ${{ secrets.BUGSPLAT_HOST }}
BUGSPLAT_USER: ${{ secrets.BUGSPLAT_USER }}
BUGSPLAT_PASSWORD: ${{ secrets.BUGSPLAT_PASSWORD }}
BUGSPLAT_DATABASE: ${{ secrets.BUGSPLAT_DATABASE }}
BUGSPLAT_CLIENT_ID: ${{ secrets.BUGSPLAT_CLIENT_ID }}
BUGSPLAT_CLIENT_SECRET: ${{ secrets.BUGSPLAT_CLIENT_SECRET }}