Skip to content

Installed Balsamic Font and Monserrat #233

Installed Balsamic Font and Monserrat

Installed Balsamic Font and Monserrat #233

Workflow file for this run

name: CI Workflow
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js 18.13.0
uses: actions/setup-node@v2
with:
node-version: '18.13.0'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Check TypeScript types
run: npm run tsc-check
- name: Run tests
run: npm test