mirror of
https://github.com/Unleash/unleash.git
synced 2024-10-28 19:06:12 +01:00
f0f339ead3
Reverting yarn4, because we are stuck on broker build for couple of days now.
27 lines
548 B
YAML
27 lines
548 B
YAML
name: PR -> Frontend Build & Test
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- frontend/**
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: build
|
|
defaults:
|
|
run:
|
|
working-directory: frontend
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js 20.x
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
- run: yarn run lint:material:icons
|
|
- run: yarn --frozen-lockfile
|
|
- run: yarn run lint:check
|
|
- run: yarn run test
|
|
- run: yarn run ts:check # TODO: optimize
|