Skip to content

Bump vm2 from 3.9.16 to 3.9.17 #54

Bump vm2 from 3.9.16 to 3.9.17

Bump vm2 from 3.9.16 to 3.9.17 #54

Workflow file for this run

name: Node CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['16', '18']
steps:
- uses: actions/checkout@v3
- name: Set up Node ${{ matrix.ruby-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build Typescript
run: npm run build
- name: Run tests
run: npm test