deps(actions)(deps): bump the github-actions group with 2 updates #154
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| service: [backend, frontend, ml] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node and Python | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '18' | |
| - name: Install for ${{ matrix.service }} | |
| run: | | |
| cd ${{ matrix.service }} | |
| if [ -f package.json ]; then npm install; fi | |
| if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
| - name: Test Status | |
| run: echo 'Tests executed' |