Skip to content

chore(deps): update dependency postcss to v8.4.47 #1833

chore(deps): update dependency postcss to v8.4.47

chore(deps): update dependency postcss to v8.4.47 #1833

Workflow file for this run

name: Package Size
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
bundle-analyze:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup | Checkout
uses: actions/[email protected]
- name: Setup GitHub App
id: bot
uses: re-taro/actions/[email protected]
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
- name: Setup | Node.js
uses: re-taro/actions/[email protected]
with:
node-version-file: .tool-versions
- name: Analyze | Bundle Size
uses: preactjs/[email protected]
with:
pattern: dist/**/*.{js,json,html,xml,css}
exclude: dist/~partytown/**/*.js
repo-token: ${{ steps.bot.outputs.token }}
- name: Revoke GitHub Apps token
env:
GITHUB_TOKEN: ${{ steps.bot.outputs.token }}
run: |
curl --location --silent --request DELETE \
--url "${GITHUB_API_URL}/installation/token" \
--header "Accept: application/vnd.github+json" \
--header "X-GitHub-Api-Version: 2022-11-28" \
--header "Authorization: Bearer ${GITHUB_TOKEN}"