Add slug property to search result #5804
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 | |
on: [push, pull_request] | |
env: | |
TZ: 'Europe/London' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install nodejs | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "18.x" | |
- name: Install node dependencies | |
run: npm ci | |
- name: Run linting | |
run: npm run lint | |
- name: Run unit tests | |
env: | |
FLOOD_APP_BING_KEY: "${{ secrets.FLOOD_APP_BING_KEY }}" | |
FLOOD_APP_BING_KEY_LOCATION: "${{ secrets.FLOOD_APP_BING_KEY_LOCATION }}" | |
FLOOD_APP_BING_KEY_MAP: "${{ secrets.FLOOD_APP_BING_KEY_MAP }}" | |
FLOOD_APP_BING_URL: "${{ secrets.FLOOD_APP_BING_URL }}" | |
FLOOD_APP_NRW_STATION_URL: "${{ secrets.FLOOD_APP_NRW_STATION_URL }}" | |
FLOOD_APP_SESSION_PASSWORD: "${{ secrets.FLOOD_APP_SESSION_PASSWORD }}" | |
run: | | |
npm run unit-test | |
- name: Analyse code quality | |
uses: sonarsource/sonarqube-scan-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
args: > | |
-Dsonar.organization=defra | |
-Dsonar.projectKey=DEFRA_flood-app | |
-Dsonar.exclusions=**/node_modules/**,**/test/**,**/test-output/** | |
-Dsonar.javascript.lcov.reportPaths=coverage/lcov.info | |
-Dsonar.javascript.exclusions=**/node_modules/**,**/test/**,**/test-output/**,**/mock/**,**/server/dist/**,**/server/src/**,**/service-down/** | |
-Dsonar.coverage.exclusions=**/server/routes/status.js |