Skip to content

add Close icon

add Close icon #49

Workflow file for this run

name: 🧪 Continuous Integration
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
ci:
name: 🧪 CI - Test, Lint & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: 📦 Install dependencies
run: npm ci
- name: ✅ Run tests
run: npm test
- name: 🧹 Lint code
run: npm run lint
- name: 🔨 Build project
run: npm run build