Remove cached test artifacts #1
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: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - name: Install Node deps | |
| working-directory: LumenIO/clients/web | |
| run: npm ci | |
| - name: Run vitest | |
| working-directory: LumenIO/clients/web | |
| run: npm test | |
| - name: Run playwright | |
| working-directory: LumenIO/clients/web | |
| run: npx playwright install --with-deps && npx playwright test | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Python deps | |
| working-directory: LumenIO/hub | |
| run: pip install -r requirements.txt | |
| - name: Run pytest | |
| working-directory: LumenIO/hub | |
| run: pytest |