Skip to content

Add <Icon /> component and icon prop to <Button /> #35

Add <Icon /> component and icon prop to <Button />

Add <Icon /> component and icon prop to <Button /> #35

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: 20
- name: Install packages
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck