ci: split bundle size in separate job #1
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: Bundle size | ||
on: | ||
workflow_call: | ||
inputs: | ||
bundle-artifact-name-prefix: | ||
required: true | ||
type: string | ||
ref: | ||
description: Git reference to checkout. Defaults to @actions/checkout default. | ||
type: string | ||
required: false | ||
default: '' | ||
env: | ||
E2E_DIR: projects/ngx-meta/e2e | ||
#👇 Needed for PR bundle size comment only | ||
#permissions: | ||
# pull_requests: write | ||
jobs: | ||
bundle-size: | ||
name: Bundle size - Angular v${{ matrix.version }} | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
strategy: | ||
matrix: | ||
version: [15, 16, 17] |