Skip to content

feat: Add footer to base layout (#30) #93

feat: Add footer to base layout (#30)

feat: Add footer to base layout (#30) #93

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x] # Or a version consistent with package.json if specified
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test