Skip to content

Bump mime-types-data from 3.2025.0318 to 3.2025.0325 #762

Bump mime-types-data from 3.2025.0318 to 3.2025.0325

Bump mime-types-data from 3.2025.0318 to 3.2025.0325 #762

Workflow file for this run

# This workflow will build a middleman project with bundle
name: Testing For PRs
on: [ pull_request ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Ruby
uses: ruby/setup-ruby@1a615958ad9d422dd932dc1d5823942ee002799f # v1.227.0
with:
bundler-cache: true # would run bundle install
- name: Run the build
run: bundle exec middleman build
env:
RUN_EXTERNAL_CHECKS: true
- name: Verbose build
if: failure()
run: bundle exec middleman build --verbose
env:
RUN_EXTERNAL_CHECKS: true