fix(deps): update shiki monorepo to v1.24.4 (#528) #1177
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: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
format: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Node.js | |
uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2 | |
env: | |
MISE_NODE_COREPACK: true | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Format | |
run: pnpm run format | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Node.js | |
uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2 | |
env: | |
MISE_NODE_COREPACK: true | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Lint | |
run: pnpm run lint | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Node.js | |
uses: jdx/mise-action@5bb8f8c1911837cf42064e6490e7634fc842ee7e # v2 | |
env: | |
MISE_NODE_COREPACK: true | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Type check | |
run: pnpm run type-check | |
- name: Build | |
run: pnpm run build |