Fix file handling for converted files #85
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: Cortex File Handler Tests | |
| on: | |
| push: | |
| branches: [ main, dev ] | |
| paths: | |
| - 'helper-apps/cortex-file-handler/**' | |
| - '.github/workflows/cortex-file-handler-test.yml' | |
| pull_request: | |
| branches: [ main, dev ] | |
| paths: | |
| - 'helper-apps/cortex-file-handler/**' | |
| - '.github/workflows/cortex-file-handler-test.yml' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: helper-apps/cortex-file-handler | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| cache: 'npm' | |
| cache-dependency-path: helper-apps/cortex-file-handler/package-lock.json | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y ffmpeg | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Azurite | |
| run: npm install -g azurite | |
| - name: Setup GCS test environment | |
| run: cp .env.test.gcs.ci .env.test.gcs | |
| - name: Run GCS tests (includes Azure tests) | |
| run: npm run test:gcs | |
| - name: Run tests | |
| run: npm test | |
| env: | |
| NODE_ENV: test |