#3095 [FEAT] Add Twilio SMS Notification Support #186
Workflow file for this run
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 Check (Client & Server) | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build-client: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install client dependencies | |
| working-directory: client | |
| run: npm install | |
| - name: Check client build | |
| working-directory: client | |
| run: npm run build | |
| build-server: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install server dependencies | |
| working-directory: server | |
| run: npm install | |
| - name: Check server build | |
| working-directory: server | |
| run: npm run build |