Skip to content

refactor: add fixed node version #27

refactor: add fixed node version

refactor: add fixed node version #27

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@main
- name: Set up Node.js
uses: actions/setup-node@main
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build application
run: npm run build