chore(deps): bump tar from 7.5.1 to 7.5.2 #19
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| quality: | |
| name: Quality checks (Node ${{ matrix.node }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: ["20.x", "24.x"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: pnpm run lint | |
| - name: Typecheck | |
| run: pnpm run typecheck | |
| - name: Unit tests | |
| run: pnpm run test:unit | |
| - name: Integration tests | |
| run: pnpm run test:integration | |
| - name: Build package | |
| run: pnpm run build | |
| - name: Ensure bundled LAME binary | |
| env: | |
| LAME_FORCE_DOWNLOAD: "1" | |
| run: node ./scripts/install-lame.mjs | |
| - name: Diagnose bundled LAME binary | |
| run: node ./scripts/diagnose-lame.mjs | |
| - name: Run examples | |
| run: | | |
| pnpm run example:wav-to-mp3 | |
| pnpm run example:mp3-to-wav | |
| pnpm run example:stream | |
| postinstall: | |
| name: LAME install on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| needs: quality | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: pnpm | |
| - name: Install dependencies (runs postinstall) | |
| env: | |
| LAME_FORCE_DOWNLOAD: "1" | |
| run: pnpm install --frozen-lockfile |