fix: disable compression on album and art images #70
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: ci | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Install dependencies | |
run: pnpm install | |
env: | |
LIHBR_APEX: ${{ secrets.LIHBR_APEX }} | |
- name: Lint | |
run: pnpm lint | |
test: | |
runs-on: ${{ matrix.os }} | |
name: test (os ${{ matrix.os }}, node ${{ matrix.node }}) | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [lts/*] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Install dependencies | |
run: pnpm install | |
env: | |
LIHBR_APEX: ${{ secrets.LIHBR_APEX }} | |
- name: Typecheck | |
run: pnpm typecheck | |
# - name: Unit | |
# run: pnpm unit | |
# - name: Build | |
# run: pnpm build |