mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-27 06:01:08 +08:00
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
name: Build Frontend
|
|
|
|
on:
|
|
# allow manual dispatch
|
|
workflow_dispatch:
|
|
# run on PRs
|
|
pull_request:
|
|
paths:
|
|
- 'frontend/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.ref }}-frontend-build
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '12'
|
|
|
|
- name: Cache Yarn
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: "~/.cache/yarn"
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
|
|
- name: Install frontend deps
|
|
env:
|
|
CI: true
|
|
run: (cd frontend && yarn install --frozen-lockfile --cache-folder ~/.cache/yarn)
|
|
|
|
- name: Lint frontend
|
|
env:
|
|
CI: true
|
|
run: (cd frontend && yarn lint)
|
|
|
|
- name: Build frontend
|
|
env:
|
|
CI: true
|
|
# keep these in sync with compose!
|
|
proxyHost: "http://hangar_new_backend:8080"
|
|
authHost: "http://hangar_new_auth:8000"
|
|
lazyAuthHost: "https://hangar-auth.benndorf.dev"
|
|
host: "0.0.0.0"
|
|
PUBLIC_HOST: "https://hangar.benndorf.dev"
|
|
run: (cd frontend && yarn build)
|