Skip to content

Commit

Permalink
Create gh pages node build
Browse files Browse the repository at this point in the history
  • Loading branch information
jlevine18 authored Feb 9, 2024
1 parent a4a0c44 commit 0aca6a9
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/node_to_gh.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Node.js GHP build

on:
push:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: 'admin-api-frontend'
- name: Setup Pages
uses: actions/configure-pages@v4
- run: npm ci
working-directory: 'admin-api-frontend'
- run: npm run build --if-present
working-directory: 'admin-api-frontend'
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "admin-api-frontend/build/"

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
permissions:
contents: read
pages: write
id-token: write

0 comments on commit 0aca6a9

Please sign in to comment.