fix bash command #10
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: API, Web and Core workflow | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| core: | |
| name: "build & install Core dependencies" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| defaults: | |
| run: | |
| working-directory: components/core | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v4 | |
| - name: setup composite setup | |
| uses: ./.github/workflows/actions/install-and-cache-node-deps | |
| with: | |
| path: components/core/package-lock.json | |
| - name: "build core" | |
| run: npm run build |