misc_pterodactyl-panel/.github/workflows/build.yml

33 lines
676 B
YAML
Raw Permalink Normal View History

name: Build
2022-03-28 19:13:27 +00:00
on:
push:
branches:
- 'develop'
- 'v2'
pull_request:
2022-03-28 19:13:27 +00:00
jobs:
ui:
name: UI
2022-03-28 19:13:27 +00:00
runs-on: ubuntu-20.04
if: "!contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'ci skip')"
strategy:
matrix:
node-version: [16]
2022-03-28 19:13:27 +00: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