Skip to content

Updated the package to avoid any issues with the name. #9

Updated the package to avoid any issues with the name.

Updated the package to avoid any issues with the name. #9

Workflow file for this run

name: Test NPM Package
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
timeout-minutes: 5
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm install
- run: npm test