Skip to content

My Second Pull Request #2

My Second Pull Request

My Second Pull Request #2

Workflow file for this run

name: CI/CD Pipeline
on:
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build