BAU: Bump sass from 1.77.8 to 1.79.1 #5940
Workflow file for this run
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: Pre-merge checks | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- ready_for_review | |
- synchronize | |
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
with: | |
node-version: 18.20.3 | |
cache: "yarn" | |
cache-dependency-path: "yarn.lock" | |
- name: Install dependencies | |
run: yarn install | |
- name: Check formatting | |
run: yarn check-pretty | |
- name: Run lint | |
run: yarn lint | |
- 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: SonarCloud Scan | |
uses: sonarsource/sonarcloud-github-action@e44258b109568baa0df60ed515909fc6c72cba92 # v2.3.0 | |
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 |