Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ jobs:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test
Expand Down
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ inputs:
default: 'build'
compression:
description: 'The compression algorithm to use: "gzip" or "brotli"'
default: 'gzip'

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We were previously relying on size-plugin-core picking a default but I think we should be explicitly passing an option in ourselves

show-total:
description: 'Show total size and difference.'
default: 'true'
Expand Down Expand Up @@ -47,5 +48,5 @@ inputs:
default: 'Filename:asc'

runs:
using: 'node20'
using: 'node24'
main: 'index.js'
Loading