fix(deps): update dependency intl to v0.20.1 #1995
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: 'Checks' | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: checks-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
changes: | |
uses: ./.github/workflows/wc-changes.yml | |
action: | |
runs-on: ubuntu-24.04 | |
needs: changes | |
if: needs.changes.outputs.action == 'true' | |
permissions: | |
checks: "write" | |
contents: "read" | |
pull-requests: "write" | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# https://github.com/marketplace/actions/actionlint-with-reviewdog | |
- uses: reviewdog/action-actionlint@08ef4afa963243489a457cca426f705ce4e0d1a5 # v1.60.0 | |
with: | |
fail_on_error: true | |
filter_mode: nofilter | |
level: error | |
reporter: github-pr-review | |
cache-deps: | |
runs-on: ubuntu-24.04 | |
needs: changes | |
if: needs.changes.outputs.dependencies == 'true' | |
timeout-minutes: 10 | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# https://github.com/marketplace/actions/mise-action | |
- name: mise action | |
uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 | |
- name: setup gitignore target files | |
uses: ./.github/actions/setup-gitignore-target-files | |
- name: setup pub | |
uses: ./.github/actions/setup-pub | |
analyze: | |
runs-on: ubuntu-24.04 | |
needs: | |
- changes | |
- cache-deps | |
if: needs.changes.outputs.analyze == 'true' | |
timeout-minutes: 10 | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# https://github.com/marketplace/actions/mise-action | |
- name: mise action | |
uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 | |
- name: setup gitignore target files | |
uses: ./.github/actions/setup-gitignore-target-files | |
- name: setup pub | |
uses: ./.github/actions/setup-pub | |
- name: Run analyze | |
run: melos analyze | |
test: | |
runs-on: ubuntu-24.04 | |
needs: | |
- changes | |
- cache-deps | |
if: needs.changes.outputs.test == 'true' | |
timeout-minutes: 10 | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# https://github.com/marketplace/actions/mise-action | |
- name: mise action | |
uses: jdx/mise-action@249c01ba271e19fa76eede7f766161cc95ace489 # v2.1.10 | |
- name: setup gitignore target files | |
uses: ./.github/actions/setup-gitignore-target-files | |
- name: setup pub | |
uses: ./.github/actions/setup-pub | |
- name: Setup very_good_cli | |
run: dart pub global activate very_good_cli | |
- name: Run test | |
run: melos run ci:test --no-select | |
status-check: | |
runs-on: ubuntu-24.04 | |
needs: | |
- analyze | |
- test | |
- action | |
permissions: { } | |
if: failure() | |
steps: | |
- run: exit 1 |