Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

feat(ui): add toaster, add export, and update icons #6

feat(ui): add toaster, add export, and update icons

feat(ui): add toaster, add export, and update icons #6

Workflow file for this run

name: Formatting, Linting, and Type Checking
on: [push, pull_request]
jobs:
style:
name: Prettier and ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: Install all dependencies
run: npm ci
- name: Run Prettier
run: npm run format:check
- name: Run TypeScript checks
run: npm run tsc