Skip to content

[Snyk] Upgrade @fortawesome/free-solid-svg-icons from 6.7.1 to 6.7.2 … #5104

[Snyk] Upgrade @fortawesome/free-solid-svg-icons from 6.7.1 to 6.7.2 …

[Snyk] Upgrade @fortawesome/free-solid-svg-icons from 6.7.1 to 6.7.2 … #5104

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test CI
on:
push:
branches: [dev, live]
pull_request:
branches: [dev, live]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20", "22"]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v4
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install
run: npm install -g npm
- name: Upgrade npm
run: npm install
- name: Install playwright
run: npx playwright install --with-deps
- name: run tests
run: npm run test