fix bug with sidebar elements not clickable on first click #607
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: Memex Extension CI checks | |
on: | |
push: | |
branches: | |
- 'hotfix/**' | |
- 'release/**' | |
jobs: | |
test-suite: | |
name: Memex Extension Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout super repo | |
uses: actions/checkout@v4 | |
- name: Add SSH private keys for pulling submodule private repositories | |
uses: webfactory/ssh-agent@v0.9.0 | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Pull submodules | |
run: git submodule update --init --recursive | |
- name: Install Node.js, NPM and Yarn | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
cache: 'yarn' | |
- run: yarn install --ignore-scripts --ignore-optional --non-interactive | |
- run: yarn test |