Skip to content

Merge pull request #403 from NYPL-Simplified/SIMPLY-4198/list-count-b… #301

Merge pull request #403 from NYPL-Simplified/SIMPLY-4198/list-count-b…

Merge pull request #403 from NYPL-Simplified/SIMPLY-4198/list-count-b… #301

Workflow file for this run

name: Test Circulation-Web
on:
[push, pull_request]
jobs:
test-circulation-web:
name: Run Circulation-Web Tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
# node 10 is the node used in the docker image for circulation
node-version: '10.x'
- name: Install dependencies
run: npm ci
- name: Run tests
env:
TZ: America/New_York
run: npm test