Make Copy Link include the 'point' parameter if the sidebar is open #2723
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: lint-and-test | |
| on: | |
| - push | |
| - pull_request | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| lintAndtestBackend: | |
| name: lint and test backend | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.26.4 | |
| - name: Create dummy file in resources | |
| run: mkdir cmd/frontend/resources && touch cmd/frontend/resources/make-typecheck-happy.txt | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.12.2 | |
| - name: Run Go tests | |
| run: go test ./pkg/... | |
| - uses: ./.github/send-notification-action | |
| if: ${{ failure() }} | |
| with: | |
| secret: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| lintAndTestFrontEnd: | |
| name: lint and test frontend | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 26 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 11.8.0 | |
| run_install: | | |
| - recursive: true | |
| - name: Test build | |
| run: pnpm build | |
| - name: Run VueTSC | |
| run: pnpm vue-tsc | |
| - name: Run Oxlint | |
| run: pnpm oxlint --type-aware | |
| - name: Run Oxfmt | |
| run: pnpm oxfmt --check | |
| - name: Run tests | |
| run: pnpm test | |
| - uses: ./.github/send-notification-action | |
| if: ${{ failure() }} | |
| with: | |
| secret: ${{ secrets.SLACK_WEBHOOK_URL }} |