chore(deps): update all patch dependencies #528
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: | |
schedule: | |
- cron: '0 1 * * *' | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
id: pnpm-install | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build Rspack | |
run: | | |
pnpm build:rspack | |
- name: Build Rsbuild | |
run: | | |
pnpm build:rsbuild | |
- name: Build Rspress | |
run: | | |
pnpm build:rspress | |
- name: Build Rsdoctor | |
run: | | |
pnpm build:rsdoctor |