Share tooltip zindex #553
This file contains hidden or 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: Static Checks | |
| on: | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: "Install dependencies" | |
| uses: ./.github/workflows/install-deps | |
| - name: Compile locales | |
| run: yarn run lingui compile | |
| - name: Download wiki content from ref | |
| env: | |
| GITLAB_WIKI_TOKEN: ${{ secrets.GITLAB_WIKI_TOKEN }} | |
| GITLAB_WIKI_URL: ${{ secrets.GITLAB_WIKI_URL }} | |
| run: | | |
| yarn run wiki:update-content | |
| - name: Knip | |
| run: yarn run knip | |
| - name: Lint | |
| run: yarn run lint | |
| - name: Typecheck | |
| run: yarn run typecheck | |
| - name: Unit tests | |
| run: yarn run test:unit |