Enable @typescript-eslint/no-floating-promises
ESLint rule
#36
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: Chromatic Package Size | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize] | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
jobs: | |
chromatic: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- run: corepack enable | |
- name: install | |
run: yarn install --immutable | |
- name: build | |
run: yarn build | |
- name: Get Package Size | |
id: package_size | |
run: | | |
export DIST_SIZE="$(du -k ./dist | cut -f1)" | |
echo "Package Size: $DIST_SIZE KB" | |
echo "size=$DIST_SIZE" >> "$GITHUB_OUTPUT" | |
- name: Update Database | |
run: | | |
curl "${{ secrets.UPSTASH_REDIS_REST_URL }}/set/$GITHUB_SHA/${{ steps.package_size.outputs.size }}" -H "Authorization: Bearer ${{ secrets.UPSTASH_API_KEY }}" | |
- name: Get Previous Size | |
id: previous | |
run: | | |
export MAIN_HEAD_SHA="$(git rev-parse origin/main)" | |
echo "origin/main: $MAIN_HEAD_SHA" | |
export MAIN_HEAD_SIZE="$(curl -s "${{ secrets.UPSTASH_REDIS_REST_URL }}/get/$MAIN_HEAD_SHA" -H "Authorization: Bearer ${{ secrets.UPSTASH_API_KEY }}")" | |
echo "origin/main: $MAIN_HEAD_SIZE" | |
echo "main_head_sha=$MAIN_HEAD_SHA" >> "$GITHUB_OUTPUT" | |
echo "main_head_size=$MAIN_HEAD_SIZE" >> "$GITHUB_OUTPUT" | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
// 1. Retrieve existing bot comments for the PR | |
const { data: comments } = await github.rest.issues.listComments({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
}) | |
const botComment = comments.find(comment => { | |
return comment.user.type === 'Bot' && comment.body.includes('Package Size') | |
}); | |
const output = ["📦 Package Size: ${{ steps.package_size.outputs.size }} KB"]; | |
const main_head_json = JSON.parse(`${{ steps.previous.outputs.main_head_size }}`); | |
if(main_head_json && main_head_json.result) { | |
const diff = parseInt("${{ steps.package_size.outputs.size }}") - parseInt(main_head_json.result); | |
const diffEmoji = diff > 0 ? '⚠️' : '✅'; | |
const diffSymbol = diff > 0 ? '+' : ''; | |
output.push(`${diffEmoji} Compared to main: ${diffSymbol}${diff} KB ${{ steps.previous.outputs.main_head_sha }} (${main_head_json.result} KB)`); | |
} | |
if (botComment) { | |
github.rest.issues.updateComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
comment_id: botComment.id, | |
body: output.join('\n'), | |
}) | |
} else { | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: output.join('\n'), | |
}) | |
} |