Skip to content

feat: add new styles for layout, marketing, and responsive design #3

feat: add new styles for layout, marketing, and responsive design

feat: add new styles for layout, marketing, and responsive design #3

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: Build
run: npm run build
- name: Test
run: npm test