Skip to content

ci: Forced to run on node 24 #5

ci: Forced to run on node 24

ci: Forced to run on node 24 #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Set up Python
uses: actions/setup-python@v5.6.0
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Check app imports
run: python -c "import app; print('App imports successfully')"