[ENH] Refined content and location of How to access data
button (#409)
#969
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: component tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
component-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create .env file | |
run: | | |
echo -e "NB_API_QUERY_URL=https://federate.neurobagel.org/" > .env | |
- name: build | |
run: npm install && npm run build | |
- name: Run component tests | |
uses: cypress-io/github-action@v6 | |
with: | |
component: true |