1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/.github/workflows/frontend.yml
2021-01-01 14:28:29 -07:00

31 lines
723 B
YAML

name: Frontend Testing
on: [push, pull_request]
jobs:
frontend:
name: Type Check
strategy:
fail-fast: false
matrix:
node-version: [14.x]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
env:
working-directory: ./hyperglass/ui
steps:
- name: Git Checkout
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
working-directory: ${{ env.working-directory }}
run: yarn install
- name: TypeScript Check
uses: icrawl/action-tsc@v1
with:
project: ${{ env.working-directory }}