1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00
Pterodactyl-Panel/.github/workflows/build.yaml

36 lines
639 B
YAML
Raw Normal View History

name: Build
2022-03-28 21:13:27 +02:00
on:
push:
branches:
- "develop"
- "1.0-develop"
2022-03-28 21:13:27 +02:00
pull_request:
branches:
- "develop"
- "1.0-develop"
2022-03-28 21:13:27 +02:00
jobs:
ui:
name: UI
2022-03-28 21:13:27 +02:00
runs-on: ubuntu-20.04
strategy:
fail-fast: false
2022-03-28 21:13:27 +02:00
matrix:
node-version: [16]
2022-03-28 21:13:27 +02:00
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build:production