mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
99e7aec18a
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
28 lines
622 B
YAML
28 lines
622 B
YAML
name: PR -> Frontend Build & Test
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- frontend/**
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: frontend
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: yarn --frozen-lockfile
|
|
- run: yarn run test
|
|
- run: yarn run fmt:check
|
|
- run: yarn run lint:check
|
|
- run: yarn run ts:check # TODO: optimize
|