Skip to content

ADD: GSoC'25 week 10 blog by Aditya (#332) #10

ADD: GSoC'25 week 10 blog by Aditya (#332)

ADD: GSoC'25 week 10 blog by Aditya (#332) #10

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test Build
runs-on: ubuntu-latest
steps:
- name: Checkout the code base
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build