name: CI on: push: branches: - master pull_request: branches: - "**" env: FORCE_COLOR: 2 NODE: 24 PYTHON_VERSION: "3.14" jobs: test: runs-on: ubuntu-latest steps: - name: Clone repository uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 #v6.0.1 with: persist-credentials: false fetch-depth: 0 - name: Set up Python uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 #v6.1.0 with: python-version: "${{ env.PYTHON_VERSION }}" architecture: "x64" cache: pip - name: Set up Node.js uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f #v6.1.0 with: node-version: "${{ env.NODE }}" cache: npm - name: Install Python dependencies run: pip install -r requirements.txt - name: Install npm dependencies run: npm ci - name: Build and test run: npm test