mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
1bde4c9a0c
* Update all unit test packages, set node engine rules, new circleci workflow Co-authored-by: unlikelyzero <jchill2@gmail.com> Co-authored-by: Andrew Henry <akhenry@gmail.com>
20 lines
559 B
YAML
20 lines
559 B
YAML
name: lighthouse
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Which branch do you want to test?' # Limited to branch for now
|
|
required: false
|
|
default: 'master'
|
|
jobs:
|
|
lighthouse:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.event.inputs.version }}
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- run: npm install && npm install -g @lhci/cli #Don't want to include this in our deps
|
|
- run: lhci autorun |