Test TEv2 Workflow #4
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 TEv2 Workflow | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test-tev2: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: bun add @aviarytech/tev2-ingress @aviarytech/tev2-hrgt @tno-terminology-design/mrg-import | |
- name: Run @aviarytech/tev2-ingress | |
run: bun run @aviarytech/tev2-ingress | |
- name: Run @tno-terminology-design/mrg-import | |
run: bun run @tno-terminology-design/mrg-import | |
- name: Run @aviarytech/tev2-hrgt | |
run: bun run @aviarytech/tev2-hrgt |