Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Feat; add spinner component #585

Feat; add spinner component

Feat; add spinner component #585

Workflow file for this run

# Run unit tests with yarn
name: Unit Tests
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Install dependencies
run: |
echo "//npm.fontawesome.com/:_authToken=${{ secrets.FONTAWESOME_NPM_TOKEN }}" >> .npmrc
yarn install --frozen-lockfile
- name: Run unit tests
run: yarn test
- name: Check code formatting
run: yarn formatCheck
- name: Lint code
run: yarn lint