Skip to content

build(deps): bump @fortawesome/fontawesome-svg-core from 6.5.1 to 6.7.1 #23191

build(deps): bump @fortawesome/fontawesome-svg-core from 6.5.1 to 6.7.1

build(deps): bump @fortawesome/fontawesome-svg-core from 6.5.1 to 6.7.1 #23191

Workflow file for this run

name: Testing (Pull Request)
on:
pull_request:
types: [edited, labeled, opened, synchronize, reopened]
jobs:
test:
name: Unit tests
runs-on: ubuntu-20.04
steps:
- name: set up node.js
uses: actions/setup-node@v4
with:
node-version: 16.13.1
- name: check out code
uses: actions/checkout@v4
- name: rename config file
run: mv common/utils/clientConfig.sample.ts common/utils/clientConfig.ts
- name: install
run: yarn install
- name: run eslint
run: yarn lint
- name: run typescript build
run: yarn tsc
- name: unit tests
run: yarn test-coverage
env:
CI: true
- name: upload test coverage to codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}