Monorepo and Dependencies adjustments #1
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: Test Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test-build: | |
| name: Test Build | |
| runs-on: ubuntu-latest | |
| environment: RELEASE | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use PNPM | |
| uses: pnpm/action-setup@v5 | |
| with: | |
| version: 10 | |
| cache: true | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| registry-url: https://registry.npmjs.org/ | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Code check | |
| run: npm run code-check | |
| - name: Build Package | |
| run: | | |
| npm run package-builder |