Skip to content

chore: Configure Git for GitHub Actions workflow #9

chore: Configure Git for GitHub Actions workflow

chore: Configure Git for GitHub Actions workflow #9

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: 🛠️ Configure Git
run: |
git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
git config --global user.name "${{ secrets.GIT_USER_NAME }}"
- 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 }}