Skip to content

Added code animation section in homepage #14

Added code animation section in homepage

Added code animation section in homepage #14

Workflow file for this run

name: Test Application Build
on:
push:
branches: ['master']
jobs:
test-build:
name: Test application build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Check Build Output
run: test -d build && echo "Build directory exists"