Skip to content

Test GitHub Actions workflow #2

Test GitHub Actions workflow

Test GitHub Actions workflow #2

Workflow file for this run

name: Node.js CI/CD Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies
run: npm ci
# - name: Lint code
# run: npm run lint
# - name: Type check code
# run: npm run type-check
- name: Build code
run: npm run build --if-present
# - name: Run tests
# run: npm test