Skip to content

initial testing for vis #2

initial testing for vis

initial testing for vis #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ gh-pages ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Use Node 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install Dependencies (prod)
run: yarn install --frozen-lockfile --production
- name: Run Tests (JEST)
run: yarn test --ci --silent --testPathIgnorePatterns=experimental
env:
CI: true
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}