Skip to content

feat: Search Bar now uses api/v1/topics new REST call when previewnet is selected #1025

feat: Search Bar now uses api/v1/topics new REST call when previewnet is selected

feat: Search Bar now uses api/v1/topics new REST call when previewnet is selected #1025

name: "PR Checks"
on:
workflow_dispatch:
pull_request:
types:
- opened
- reopened
- synchronize
defaults:
run:
shell: bash
permissions:
contents: read
packages: write
checks: write
issues: read
pull-requests: write
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
name: Code
uses: ./.github/workflows/comp-compile-explorer-code.yaml
secrets:
access-token: ${{ secrets.GITHUB_TOKEN }}
unit-tests:
name: Unit Tests
uses: ./.github/workflows/comp-compile-explorer-code.yaml
with:
custom-job-label: Standard
enable-unit-tests: true
secrets:
access-token: ${{ secrets.GITHUB_TOKEN }}
e2e-tests:
name: E2E Tests
uses: ./.github/workflows/comp-compile-explorer-code.yaml
with:
custom-job-label: Standard
enable-e2e-tests: true
secrets:
access-token: ${{ secrets.GITHUB_TOKEN }}
sonar-analysis:
name: Sonar Analysis
uses: ./.github/workflows/comp-compile-explorer-code.yaml
with:
custom-job-label: Standard
enable-sonar-analysis: true
secrets:
access-token: ${{ secrets.GITHUB_TOKEN }}
sonar-token: ${{ secrets.SONAR_TOKEN }}