Skip to content

[Snyk] Security upgrade next from 12.2.5 to 13.5.0 #252

[Snyk] Security upgrade next from 12.2.5 to 13.5.0

[Snyk] Security upgrade next from 12.2.5 to 13.5.0 #252

Workflow file for this run

name: Unit Checks
on:
pull_request:
branches:
- main
- dev
push:
branches:
- main
- dev
jobs:
unit:
name: Jest Unit Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout 🔔
uses: actions/checkout@v3
- name: "Building and Unit Tests Against Node"
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
env:
CI: true
- name: Linting
run: npm run lint
- name: Unit Tests 🧪
run: npm run test:coverage -- -u
env:
CI: true
- name: Deploy Coverage Report 🚀
if: ${{ github.actor != 'dependabot[bot]' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
target-folder: ${{ github.ref }}/coverage
folder: coverage