Skip to content

fix: landing page image fixed #9

fix: landing page image fixed

fix: landing page image fixed #9

Workflow file for this run

name: Node.js Continuous Integration
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name : "Installing required Dependencies"
run: npm install
- name : "Format Code"
run: npm run format
- name : "Lint Code"
run: npm run lint
- name : "Creating Build"
run: npm run build
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name : "Installing required Dependencies"
run: npm install
- name : "Running Unit Tests"
run: npm run test