Skip to content

Refactor SPA template: Update feature card and icon label components,… #10

Refactor SPA template: Update feature card and icon label components,…

Refactor SPA template: Update feature card and icon label components,… #10

Workflow file for this run

name: CI
on:
workflow_dispatch:
workflow_call:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ci:
name: Release Gate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test