Skip to content

Merge branch '1.0-develop' of https://ghgo.xyz/https://github.com/pte… #128

Merge branch '1.0-develop' of https://ghgo.xyz/https://github.com/pte…

Merge branch '1.0-develop' of https://ghgo.xyz/https://github.com/pte… #128

Workflow file for this run

name: Build
on:
push:
branches:
- "develop"
- "1.0-develop"
pull_request:
branches:
- "develop"
- "1.0-develop"
jobs:
ui:
name: UI
runs-on: ubuntu-20.04
permissions:
contents: read
strategy:
fail-fast: false
matrix:
node-version: [16]
steps:
- name: Code Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build:production