fix: correct serving #60
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
name: Tests Workflow | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the specified branch | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
AIND_Fusion-test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-20.04 | |
container: lironavon/docker-puppeteer-container:14.16.0 | |
env: | |
CI: true | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-dependency-path: tests/package-lock.json | |
- name: AIND Fusion Regression test | |
run: | | |
cd tests | |
#install dependencies | |
npm install | |
# run test | |
npm test aind_fusion_regression | |
env: | |
CI: true | |
FAFB_Fly_Brain-test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-20.04 | |
container: lironavon/docker-puppeteer-container:14.16.0 | |
env: | |
CI: true | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-dependency-path: tests/package-lock.json | |
- name: FAFB Fly Brain Regression test | |
run: | | |
cd tests | |
#install dependencies | |
npm install | |
# run test | |
npm test FAFB_Fly_Brain_regression | |
env: | |
CI: true | |
flyEM_Hemibrain-test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-20.04 | |
container: lironavon/docker-puppeteer-container:14.16.0 | |
env: | |
CI: true | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-dependency-path: tests/package-lock.json | |
- name: FlyEM Hemibrain Regression test | |
run: | | |
cd tests | |
#install dependencies | |
npm install | |
# run test | |
npm test flyEM_Hemibrain_regression | |
env: | |
CI: true | |
Janelia_flyEM-test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-20.04 | |
container: lironavon/docker-puppeteer-container:14.16.0 | |
env: | |
CI: true | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-dependency-path: tests/package-lock.json | |
- name: Janelia FlyEM Regression test | |
run: | | |
cd tests | |
#install dependencies | |
npm install | |
# run test | |
npm test Janelia_FlyEM_regression | |
env: | |
CI: true | |