Skip to content

chore: fix CI, release scripts #75

chore: fix CI, release scripts

chore: fix CI, release scripts #75

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
test:
name: Node ${{ matrix.nodejs }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
strategy:
matrix:
nodejs: [14]
os: [
ubuntu-latest,
windows-latest,
macos-latest
]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.nodejs }}
- name: Install and link
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
# - name: Test
# run: yarn test