Skip to content

Add testing for primitives, objects and tools #3

Add testing for primitives, objects and tools

Add testing for primitives, objects and tools #3

Workflow file for this run

name: Run test for dmX on push to main and PR's
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test