Skip to content

Merge pull request #19 from rahulapjs/zccott-patch-8 #19

Merge pull request #19 from rahulapjs/zccott-patch-8

Merge pull request #19 from rahulapjs/zccott-patch-8 #19

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Lint
# Note: Ensure eslint is installed in your project
run: npm run lint
continue-on-error: false
- name: Build Project
run: npm run build