mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
22 lines
519 B
YAML
22 lines
519 B
YAML
|
name: "e2e"
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
inputs:
|
||
|
version:
|
||
|
description: 'Which branch do you want to test?' # Limited to branch for now
|
||
|
required: false
|
||
|
default: 'master'
|
||
|
jobs:
|
||
|
e2e:
|
||
|
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
|
||
|
- name: Run the e2e tests
|
||
|
run: npm run test:e2e:ci
|