docs(audiogram): add Chaise annotations for long PoC model #49
Workflow file for this run
This file contains hidden or 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 deriva-webapps | |
| on: [push] | |
| jobs: | |
| install-and-test: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| # allow all matrix jobs to complete | |
| fail-fast: false | |
| matrix: | |
| node-version: ["20.x", "22.x", "24.x"] | |
| env: | |
| PYTHONWARNINGS: ignore:Unverified HTTPS request | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout repository code | |
| uses: actions/checkout@v6 | |
| with: | |
| path: deriva-webapps | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install deriva-webapps | |
| run: | | |
| cd deriva-webapps | |
| sudo make root-install |