Add simplified graph event streaming: an async generator, and an SSE … #426
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: Build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.4.x' | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Build | |
run: yarn build | |
env: | |
NODE_OPTIONS: --max_old_space_size=6000 | |
- name: Test | |
run: yarn test |