Skip to content

build(deps): bump shelljs and commitizen #12

build(deps): bump shelljs and commitizen

build(deps): bump shelljs and commitizen #12

Workflow file for this run

name: CI Pipeline
# Trigger the workflow on push and pull request events to the main branch
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest # You can also use other runners like windows-latest or macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "22"
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint:check
- name: Build the project
run: npm run build