Skip to content

Commit

Permalink
Initial React CI/CD YML
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed-Fawaz committed Aug 23, 2024
1 parent d78c59a commit 81a7171
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/react.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: React and Node Pipeline

on:
push:
branches:
- develop
pull_request:
branches:
- develop

jobs:
build-and-test:
name: Build and Test React App
runs-on: ubuntu-latest

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

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

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test

- name: Build
run: npm run build

0 comments on commit 81a7171

Please sign in to comment.