Skip to content

Add "until" and "select" as Bash keywords #531

Add "until" and "select" as Bash keywords

Add "until" and "select" as Bash keywords #531

Workflow file for this run

# This workflow computes the size of a CDN build's output on all Javascript files.
# Reported file sizes are after the result of gzip compression.
# Compression action used: https://github.com/preactjs/compressed-size-action
name: Size Report (gzip)
on: [pull_request]
permissions:
contents: read
jobs:
build:
permissions:
checks: write # for preactjs/compressed-size-action to create and update the checks
contents: read # for actions/checkout to fetch code
issues: write # for preactjs/compressed-size-action to create comments
pull-requests: write # for preactjs/compressed-size-action to write a PR review
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Compute Compressed Size
uses: preactjs/compressed-size-action@v2
with:
build-script: "build-cdn"
compression: "gzip"
minimum-change-threshold: 5 # bytes
pattern: "./build/{*.min.js,es/*.min.js,languages/*.min.js,es/languages/*.min.js}"