Skip to content

Merge pull request #1843 from govuk-one-login/BAU/fix-frontend-deploy… #1076

Merge pull request #1843 from govuk-one-login/BAU/fix-frontend-deploy…

Merge pull request #1843 from govuk-one-login/BAU/fix-frontend-deploy… #1076

name: analyse on merge checks
on:
push:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-latest
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6389:6379
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.20.3
- name: Install dependencies
run: yarn install
- name: Build app
run: yarn build
- name: Run unit tests
run: yarn test:unit
- name: Run integration tests
run: yarn test:integration-no-clear-cov
- name: Run test coverage
run: yarn test:coverage
- name: Run lint
run: yarn lint
- name: SonarCloud Scan
uses: sonarsource/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
env:
ENVIRONMENT: development
API_BASE_URL: http://localhost:6000/api
FRONTEND_API_BASE_URL: http://localhost:6060/api
SESSION_SECRET: secret
API_KEY: test-key
REDIS_HOST: localhost
REDIS_PORT: 6389
SMARTAGENT_API_URL: https://uat.smartagent.app/ # Dummy URL for SmartAgent UAT environment