Skip to content

Fix prompt testing #125

Fix prompt testing

Fix prompt testing #125

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: npm
- run: npm ci
- run: npm run build
- run: npm install
working-directory: ./examples
- run: npm test
env:
NODE_OPTIONS: --test-reporter spec