Merge pull request #26 from Ezviz-OpenBiz/develop #71
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-demos | |
| on: | |
| push: | |
| branches: ["master", "develop"] | |
| pull_request: | |
| branches: ["master"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x, 18.x, 20.x, 21.x, 22.x, 24.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 8 | |
| - name: Build react-demo | |
| working-directory: ./examples/react-app | |
| run: | | |
| pnpm install | |
| pnpm run build | |
| - name: Build vue3.3-app | |
| working-directory: ./examples/vue3.3-app | |
| run: | | |
| pnpm install | |
| pnpm run build |