chore(deps): update nuxtjs monorepo to v4 (major) #2332
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-examples | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| name: ${{ matrix.package }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - package: Playground | |
| buildScript: dev:build | |
| storybookBuildScript: playground:storybook:build | |
| projectToken: chpt_d7cf5e98426e11e | |
| - package: Starter | |
| buildScript: example:starter:build | |
| storybookBuildScript: example:starter:storybook:build | |
| projectToken: chpt_dc04103f8a32bfa | |
| - package: Tailwind | |
| buildScript: example:tailwind:build | |
| storybookBuildScript: example:tailwind:storybook:build | |
| projectToken: chpt_fbfe47dc27d4064 | |
| - package: Showcase | |
| buildScript: example:showcase:build | |
| storybookBuildScript: example:showcase:storybook:build | |
| projectToken: chpt_a53adf402cb628c | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build | |
| run: pnpm build | |
| - name: Build example | |
| run: pnpm ${{ matrix.buildScript }} | |
| - name: Publish and test example | |
| uses: chromaui/action@4c20b95e9d3209ecfdf9cd6aace6bbde71ba1694 # v13 | |
| with: | |
| # Don't wait until Chromatic verified the build | |
| # exitOnceUploaded: true | |
| projectToken: ${{ matrix.projectToken }} | |
| buildScriptName: ${{ matrix.storybookBuildScript }} | |
| # Fail workflow if changes are found | |
| exitZeroOnChanges: false | |
| debug: true |