fix(deps): update shiki to v1.17.6 (patch) #1830
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: | |
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}" |