2024-02-29 21:44:53 -05:00
|
|
|
name: SPT Release Build
|
2024-02-29 21:25:58 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
2024-02-29 21:44:53 -05:00
|
|
|
build-server:
|
2024-02-29 21:25:58 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-02-29 21:44:53 -05:00
|
|
|
- name: Check-out Build Project
|
|
|
|
- uses: actions/checkout@v4
|
2024-02-29 21:25:58 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Setup Node.js
|
2024-02-29 21:44:53 -05:00
|
|
|
uses: actions/setup-node@v4
|
2024-02-29 21:25:58 -05:00
|
|
|
with:
|
|
|
|
node-version: '18.15.0'
|
|
|
|
|
2024-02-29 21:44:53 -05:00
|
|
|
- name: Install Node dependencies
|
2024-02-29 21:25:58 -05:00
|
|
|
run: npm install
|
2024-02-29 21:44:53 -05:00
|
|
|
working-directory: ./project
|
2024-02-29 21:25:58 -05:00
|
|
|
|
2024-02-29 21:44:53 -05:00
|
|
|
- name: Build Server Project
|
2024-02-29 21:25:58 -05:00
|
|
|
run: npm run build
|
2024-02-29 21:44:53 -05:00
|
|
|
working-directory: ./project
|
2024-02-29 21:25:58 -05:00
|
|
|
|
2024-02-29 21:44:53 -05:00
|
|
|
- name: Archive Server Build
|
|
|
|
uses: actions/upload-artifact@v4
|
2024-02-29 21:25:58 -05:00
|
|
|
with:
|
|
|
|
name: built-artifacts
|
|
|
|
path: build
|