Run generator for new swagger spec #13
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: Testing CDA Endpoints for Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Install dependencies in tests directory | |
working-directory: tests | |
run: npm install | |
- name: Link cwmjs dependency from src to tests | |
working-directory: tests | |
run: npm run link | |
- name: Run tests | |
working-directory: tests | |
run: npm run test-cicd | |
# - name: Generate coverage report | |
# working-directory: tests | |
# run: npm run coverage | |
# - name: Upload coverage report | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: coverage-report | |
# path: tests/coverage/ |