Skip to content

Adding Github Pages in Workflows #2

Adding Github Pages in Workflows

Adding Github Pages in Workflows #2

Workflow file for this run

name: React and Node Pipeline
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build-and-deploy:
name: Build and Deploy to GitHub Pages
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: Install gh-pages
run: npm install -g gh-pages
- name: Run tests
run: npm test
- name: Build
run: npm run build
- name: Deploy to GitHub Pages
run: npm run deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}