Merge pull request #8 from GenomicDataInfrastructure/add-diagrams-3 #81
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
| # SPDX-FileCopyrightText: 2026 PNED G.I.E. | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Run Tests | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: fsfe/reuse-action@676e2d560c9a403aa252096d99fcab3e1132b0f5 # v6.0.0 | |
| - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 | |
| with: | |
| node-version: 24 | |
| - name: Install | |
| run: | | |
| npm install | |
| - name: Prettier | |
| run: | | |
| npm run format | |
| - name: Type check | |
| run: | | |
| npm run typecheck |