Skip to content

Merge to main for snippets change (#58) #195

Merge to main for snippets change (#58)

Merge to main for snippets change (#58) #195

Workflow file for this run

name: Test Examples
on:
workflow_call:
push:
jobs:
run-node-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
working-directory: tests/integration
run: npm install
- name: Test the Examples
working-directory: tests/integration
run: npm run test:ts