Skip to content

chore(deps): fix npm audit vulnerabilities #37

chore(deps): fix npm audit vulnerabilities

chore(deps): fix npm audit vulnerabilities #37

Workflow file for this run

on:
push:
branches:
- main
- develop
- release/*
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: Test App
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js v22.10.0
uses: actions/setup-node@v3
with:
node-version: '22.10.0'
registry-url: https://npm.fontawesome.com/
scope: '@fortawesome'
cache: 'npm'
- name: Install Node Dependencies
run: npm ci --legacy-peer-deps
env:
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.NPM_CONFIG_FONT_AWESOME_TOKEN }}
- name: Run Unit Tests
run: npm run test:ci