1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/.github/workflows/build_frontend_prs.yml
Christopher Kolstad 15726cc8ac
chore: upgrade to yarn v4 (#7230)
![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)
2024-06-07 14:00:19 +02:00

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