added manifest #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test IIIF Collection Aggregation/Build | |
on: push | |
jobs: | |
aggregate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install | |
- name: IIIF Presentation API 2.x Collection (Aggregation) | |
run: npm run prebuild -- --path=./config/.fixtures/canopy.presentation-2.json | |
- name: IIIF Presentation API 2.x Collection (Build) | |
run: npm run test-build | |
- name: IIIF Presentation API 3.0 Collection (Aggregation) | |
run: npm run prebuild -- --path=./config/.fixtures/canopy.presentation-3.json | |
- name: IIIF Presentation API 3.0 Collection (Build) | |
run: npm run test-build |