Skip to content

refactor(test): moving all JS unit testing over to Vitest #1188

refactor(test): moving all JS unit testing over to Vitest

refactor(test): moving all JS unit testing over to Vitest #1188

Workflow file for this run

name: snippets
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/sdk-snippets
strategy:
matrix:
node-version:
- 14
- 16
- 18
- 20
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --ignore-scripts
- run: npm run build
- run: npm test