Skip to content

fix(deps): update formatjs monorepo #4563

fix(deps): update formatjs monorepo

fix(deps): update formatjs monorepo #4563

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install deps and lint
shell: bash
run: |
yarn install --frozen-lockfile
yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install deps and test
shell: bash
run: |
yarn install --frozen-lockfile
yarn test
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install deps and build
shell: bash
run: |
yarn install --frozen-lockfile
yarn build
sonar-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install test (ignore coverage threshold)
shell: bash
run: |
yarn install --frozen-lockfile
yarn test --coverageThreshold '{}'
- name: SonarCloud scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}