forked from mirrors/thatmattlove-hyperglass
fix frontend ci test, add installer ci test job [skip ci]
This commit is contained in:
parent
951ffec8f6
commit
6bc59430fe
2 changed files with 18 additions and 1 deletions
2
.github/workflows/frontend.yml
vendored
2
.github/workflows/frontend.yml
vendored
|
|
@ -26,5 +26,5 @@ jobs:
|
|||
run: yarn install
|
||||
|
||||
- name: TypeScript Check
|
||||
working-directory: ${{ end.working-directory }}
|
||||
working-directory: ${{ env.working-directory }}
|
||||
run: yarn typecheck
|
||||
|
|
|
|||
17
.github/workflows/installer.yml
vendored
Normal file
17
.github/workflows/installer.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: Installer Testing
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-20.04]
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- name: Git Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run hyperglass
|
||||
run: './install.sh'
|
||||
Loading…
Add table
Reference in a new issue