Skip to content

chore: Add deploy script to package.json for GitHub Pages deployment #8

chore: Add deploy script to package.json for GitHub Pages deployment

chore: Add deploy script to package.json for GitHub Pages deployment #8

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v2
- name: 🛠️ Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: 📦 Install dependencies
run: npm ci
- name: 🖌️ Format code
run: npm run format
- name: 🧹 Lint code
run: npm run lint
- name: 🔨 Build
run: npm run build
- name: 🧪 Test with coverage
run: npm run test
- name: 🚀 Deploy to GitHub Pages
if: github.ref == 'refs/heads/main' # Deploy only on push to main branch
run: npm run deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}