This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
Merge pull request #114 from kristinlam/main #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: | | |
cd extensions/prototypes/labgraph_monitor | |
yarn | |
- name: Run labgraph_monitor tests | |
run: | | |
cd extensions/prototypes/labgraph_monitor | |
yarn test --watchAll=false | |
yarn build |