Bug 466. Rules without a subscription cannot be listed. Listing rules for an invalid DID causes infinite loading #476
Workflow file for this run
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: API, Component and Hook Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Test API, Components and Hooks | |
strategy: | |
matrix: | |
node-version: [18.16.1, 20.4.0] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Run Component Tests | |
run: npm run test:component | |
- name: Run API Tests | |
run: npm run test:api | |
- name: Run Hook Tests | |
run: npm run test:hook | |