mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
f4e3388606
Moves to Yarn v4 --------- Co-authored-by: Alvin Bryan <107407814+alvinometric@users.noreply.github.com>
29 lines
601 B
YAML
29 lines
601 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
|
|
- name: Enable corepack
|
|
run: corepack enable
|
|
- run: yarn --immutable
|
|
- run: yarn run lint:material:icons
|
|
- run: yarn run lint:check
|
|
- run: yarn run test
|
|
- run: yarn run ts:check # TODO: optimize
|