Skip to content

feat: add logo

feat: add logo #5

Workflow file for this run

on:
push:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
task: [oxlint, oxfmt, build]
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: mise run install --frozen-lockfile
- run: mise run ${{ matrix.task }}