Skip to content

馃悰 Reset bold fonts to normal weight for correct display #76

馃悰 Reset bold fonts to normal weight for correct display

馃悰 Reset bold fonts to normal weight for correct display #76

Workflow file for this run

name: Checks
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
jobs:
test-and-build:
name: Test and Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache
uses: actions/cache@v3
id: cache
with:
path: node_modules
key: ${{ runner.os }}-modules-${{ inputs.cache_version }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-${{ inputs.cache_version }}-
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
run: npm i
- name: Run Tests
shell: bash
run: "npm run test"
- name: Build Project
shell: bash
run: "npm run build"