1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/.github/workflows/build_frontend_prs.yml

27 lines
571 B
YAML
Raw Normal View History

name: PR -> Frontend Build & Test
2021-01-12 11:44:38 +01:00
on:
pull_request:
paths:
- frontend/**
2021-01-12 11:44:38 +01:00
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
2021-01-12 11:44:38 +01:00
strategy:
matrix:
2021-05-05 22:18:35 +02:00
node-version: [14.x]
2021-01-12 11:44:38 +01:00
steps:
- uses: actions/checkout@v3
2021-01-12 11:44:38 +01:00
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
2021-01-12 11:44:38 +01:00
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn run test
- run: yarn run fmt:check
- run: yarn run ts:check # TODO: optimize