Skip to content

add file uploader manager n stuff #12

add file uploader manager n stuff

add file uploader manager n stuff #12

name: PR CI Health checks
on:
pull_request:
branches: [ main ]
defaults:
run:
working-directory: ./
jobs:
health-checks:
runs-on: ubuntu-latest
environment: development
timeout-minutes: 7
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node version
uses: actions/setup-node@v3
with:
node-version: 18
check-latest: false
registry-url: https://registry.npmjs.org
cache: "npm"
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm cache verify
npm ci --no-audit --prefer-offline
- name: Run Jest tests
run: npx jest --json --outputFile="jest-result.json" --testLocationInResults
- name: Process jest results with default
if: always()
uses: im-open/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
results-file: 'jest-result.json'