From 53c0533e34c003cd14d08c488d9649969fd4d458 Mon Sep 17 00:00:00 2001 From: Philipp Seitz Date: Wed, 7 Feb 2024 11:40:30 +0100 Subject: [PATCH] Fix order and versinos --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b84c7c7..5c6f3d5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 @@ -40,14 +40,14 @@ jobs: build-and-test-nodejs: runs-on: ubuntu-latest steps: + - name: CD to frontend + run: cd frontend - uses: actions/checkout@v4 - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: "20.x" cache: "npm" - - name: CD to frontend - run: cd frontend - name: Install dependencies run: npm ci - name: Test