Fix jest test #44
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: Integration | |
on: push | |
jobs: | |
integration: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install deps (with cache) | |
uses: bahmutov/npm-install@v1 | |
- name: Get latest JBrowse | |
run: mkdir .jbrowse && yarn run jbrowse create --force .jbrowse | |
- name: Run unit tests | |
run: yarn test --passWithNoTests | |
- name: Test plugin | |
run: yarn run test:e2e |