Fix sidebar items not showing #1225
Workflow file for this run
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: CI | |
# Runs build and test on: | |
# every push to main | |
# every pull request with main branch as the base | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Check Code | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
env: | |
DISPLAY: :99.0 | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build libraries and distributions ${{ matrix.node-version }} | |
run: pnpm build | |
- name: Check Code ${{ matrix.node-version }} | |
run: pnpm check:ci |