ReFlex Server: Build #224
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: "ReFlex Server: Build" | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| angular-lint: | |
| runs-on: windows-latest | |
| name: install and build | |
| steps: | |
| - name: checkout repo with submodules | |
| uses: actions/checkout@main | |
| - name: setup node and install packages | |
| uses: ./.github/actions/npm-install | |
| - name: build shared types | |
| run: npm run build:shared-types | |
| - name: build angular components | |
| run: npm run build:shared-components | |
| - name: build server | |
| working-directory: ${{ github.workspace }} | |
| run: npm run build:server |