Skip to content

fix(mime): prefer video/mp4 for .mp4 and image/x-icon for .ico #2091

fix(mime): prefer video/mp4 for .mp4 and image/x-icon for .ico

fix(mime): prefer video/mp4 for .mp4 and image/x-icon for .ico #2091

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches-ignore:
- release-v2
- v2
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build