Skip to content

Upgrading upload action. #38

Upgrading upload action.

Upgrading upload action. #38

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- olt
jobs:
build:
name: Build Frontend Artifact
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
- name: ensure node installed and right version
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: install deps
run: cd frontend && npm i
- name: compile/build
run: cd frontend && npm run build
- name: upload the artifact
uses: actions/upload-pages-artifact@3
with:
path: frontend/build