Skip to content

Move the model disposer so we don't prematurely drop the model from m… #30

Move the model disposer so we don't prematurely drop the model from m…

Move the model disposer so we don't prematurely drop the model from m… #30

Workflow file for this run

name: Test Examples CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
defaults:
run:
working-directory: examples
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: './examples/package-lock.json'
- run: npm ci
- run: npm test