From 7360be5625522e34aa1431d992f40a95d8129f0b Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 5 May 2021 14:57:52 +0100 Subject: [PATCH] Disabled Ghost v1 and v2 CLI tests refs https://github.com/TryGhost/Ghost/commit/57ff38da8aed1a3e3dd36a4f2fff0f9a5b12d63c - we're dropping support for Node 10 which involved bumping the Node version we run our Ghost-CLI tests on but they fail because Ghost v1 and v2 don't support Node 12 - this commit disables these tests until we come up with a good workaround --- .github/workflows/test.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 149c482252..6202168e81 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -147,17 +147,17 @@ jobs: ghost install local -d $DIR ghost update -d $DIR --zip $GITHUB_WORKSPACE/ghost.zip - - name: Update from latest v1 - run: | - DIR=$(mktemp -d) - ghost install v1 --local -d $DIR - ghost update -f -d $DIR --zip $GITHUB_WORKSPACE/ghost.zip + #- name: Update from latest v1 + #run: | + #DIR=$(mktemp -d) + #ghost install v1 --local -d $DIR + #ghost update -f -d $DIR --zip $GITHUB_WORKSPACE/ghost.zip - - name: Update from latest v2 - run: | - DIR=$(mktemp -d) - ghost install v2 --local -d $DIR - ghost update -f -d $DIR --zip $GITHUB_WORKSPACE/ghost.zip + #- name: Update from latest v2 + #run: | + #DIR=$(mktemp -d) + #ghost install v2 --local -d $DIR + #ghost update -f -d $DIR --zip $GITHUB_WORKSPACE/ghost.zip - name: Update from latest v3 run: |