mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
15726cc8ac
![Outdated as of 2020](https://github.com/Unleash/unleash/assets/177402/689a1bcc-441d-4b87-88a6-125e68a17f26) This has been on our TODO list for a long time. We're moving to latest released at the time of commit (v4.2.2)
27 lines
542 B
YAML
27 lines
542 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 --immutable
|
|
- run: yarn run lint:material:icons
|
|
- run: yarn run lint:check
|
|
- run: yarn run test
|
|
- run: yarn run ts:check # TODO: optimize
|