Node #3
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: Node | |
| # only run this manually since we rarely change the nodejs stuff, avoid eating credits | |
| on: workflow_dispatch | |
| # on: | |
| # push: | |
| # branches: [ "main" ] | |
| # pull_request: | |
| # branches: [ "main" ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "lts/*" | |
| # TODO: cache doesn't support rush | |
| cache-dependency-path: examples/stack/svc2/common/config/rush/pnpm-lock.yaml | |
| - name: "svc2: Rush Install" | |
| run: node common/scripts/install-run-rush.js install | |
| working-directory: examples/stack/svc2 | |
| - name: "svc2: Rush Build" | |
| run: node common/scripts/install-run-rush.js build --verbose | |
| working-directory: examples/stack/svc2 | |
| - name: "svc2: Rush Deploy" | |
| run: node common/scripts/install-run-rush.js deploy | |
| working-directory: examples/stack/svc2 | |
| - name: "svc2: Build Docker Image" | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: examples/stack/svc2/common/deploy/ | |
| file: examples/stack/svc2/app/Dockerfile | |
| load: true | |
| push: false |