Skip to content

SFD-121 Investigate reported security vulnerability #82

SFD-121 Investigate reported security vulnerability

SFD-121 Investigate reported security vulnerability #82

Workflow file for this run

name: PR Workflow
on:
- pull_request
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up environment
uses: ./.github/actions/set-up-environment
- name: Build app
run: npm run build
unit_tests:
needs: build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up environment
uses: ./.github/actions/set-up-environment
- name: Run tests
run: npm test