Skip to content

fix: Security updates #175

fix: Security updates

fix: Security updates #175

Workflow file for this run

name: 'Dirty Laundry Test'
on:
pull_request:
paths-ignore: ['**.md']
push:
paths-ignore: ['**.md']
workflow_dispatch:
jobs:
build-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
with:
egress-policy: audit
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- run: npm ci
- run: npm run build
- run: npm run format-check
- run: npm run lint
- name: Create mochawesome report
uses: ./
id: test-report
if: success() || failure()
with:
name: Mochawesome Tests
path: __tests__/fixtures/mochawesome1-json.json
reporter: mochawesome-json
fail-on-error: false