Skip to content

Example renderer: refer to this.world instead of global world #234

Example renderer: refer to this.world instead of global world

Example renderer: refer to this.world instead of global world #234

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: npm-install
run: npm install
- name: npm-test
run: npm run test
- name: npm-lint
run: npm run lint
- name: npm-build
run: npm run build
- name: npm-test-types
run: npm run test:types
- name: npm-typedoc
run: npm run typedoc