Fix hard failure on google maps error #5813
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: Build Size Diff | |
on: [pull_request] | |
jobs: | |
diff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
cache: "npm" | |
# https://github.com/preactjs/compressed-size-action | |
- uses: preactjs/compressed-size-action@v2 | |
with: | |
build-script: "build:ssr" | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
strip-hash: "\\.(\\w*?)\\." | |
pattern: "dist/**/*.{css,js,json,html}" |