Skip to content

Lint

Lint #190

Workflow file for this run

name: Build
on:
push:
branches:
- "develop"
- "1.0-develop"
paths-ignore:
- VERSION
- config/app.php
- .github/workflows/release.yaml
- CHANGELOG.md
pull_request:
branches:
- "develop"
paths-ignore:
- VERSION
- config/app.php
- .github/workflows/release.yaml
- CHANGELOG.md
jobs:
ui:
name: UI
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
node-version: [16]
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-engines
- name: Build
run: yarn build:production