Skip to content

Bump version -> 2.0.0-snapshot.2 #6

Bump version -> 2.0.0-snapshot.2

Bump version -> 2.0.0-snapshot.2 #6

Workflow file for this run

name: Build and Test
on: push
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build validation package
run: npm run build
- name: Run tests
run: npm test
- name: Build example
run: npm run example