Skip to content

sc420 is running npm tests #258

sc420 is running npm tests

sc420 is running npm tests #258

name: Run Tests
run-name: ${{ github.actor }} is running npm tests
on: [push, pull_request]
jobs:
Run-Npm-Tests:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: interactive-computational-graph
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test