Skip to content

Commit

Permalink
Merge pull request #7 from jspvg/constraints
Browse files Browse the repository at this point in the history
add workflow
  • Loading branch information
jspvg authored Jan 31, 2024
2 parents 2f80083 + 625f8a7 commit d8d2d7e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI/CD Pipeline

on:
push:
branches: [main]

jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.18.0'

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

0 comments on commit d8d2d7e

Please sign in to comment.