feat: move theme to zustand and improve sidebar ux (#469) #538
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| if: >- | |
| github.event_name == 'push' || | |
| !contains(github.event.pull_request.body, '[skip build]') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7.0.0 | |
| - uses: actions/setup-node@v6.4.0 | |
| with: | |
| node-version: 24.18.0 | |
| - run: yarn install | |
| - run: yarn build | |
| - name: Upload webpack stats artifact | |
| uses: relative-ci/agent-upload-artifact-action@v2.0.0 | |
| with: | |
| webpackStatsFile: ./dist/webpack-stats.json |