SSI tests gitlab ci #15603
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: Package Size | |
on: | |
pull_request: | |
schedule: | |
- cron: 0 4 * * * | |
- cron: 20 4 * * * | |
- cron: 40 4 * * * | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
package-size-report: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./.github/actions/node/active-lts | |
- uses: ./.github/actions/install | |
- name: Compute module size tree and report | |
uses: qard/heaviest-objects-in-the-universe@e2af4ff3a88e5fe507bd2de1943b015ba2ddda66 # v1.0.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |