Lay foundation for workspaces #36
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: Backend API Tests | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'services/backend-api/**' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'services/backend-api/**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run backend-api tests | |
| working-directory: services/backend-api | |
| run: bash test.sh |