Skip to content

Fixed npm published verison bug #48

Fixed npm published verison bug

Fixed npm published verison bug #48

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- dev
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v2
- name: Using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test