chore(deps): update dependency h3 to v1.15.9 [security] #2784
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: | |
| branches: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - name: Install pnpm | |
| # https://github.com/nitrojs/nitro/pull/3060 | |
| # https://github.com/nodejs/corepack/pull/614 | |
| run: npm i -g --force corepack && corepack enable pnpm | |
| - name: Setup ni | |
| run: npm i -g @antfu/ni | |
| - name: Install | |
| run: nci | |
| - name: Build | |
| run: nr build | |
| - name: Lint | |
| run: nr lint | |
| - name: Type check | |
| run: nr type-check | |
| - name: Test | |
| run: nr test | |
| - name: Build ui stories | |
| run: nr -C packages/ui story:build |