2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Combined Ghost-CLI tests into one GitHub Action job

no issue
This commit is contained in:
Daniel Lockyer 2020-02-19 18:04:00 +00:00
parent 32e706991c
commit f8b85354d3

View file

@ -6,39 +6,30 @@ on:
- master
jobs:
clean-install:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '10'
- run: npm install -g ghost-cli@latest
- run: zip -r ghost.zip .
- run: mkdir test
- run: ghost install local -d test --zip ../ghost.zip
latest-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '10'
- run: npm install -g ghost-cli@latest
- run: zip -r ghost.zip .
- run: mkdir test
- run: ghost install local -d test
- run: ghost update -d test --zip ../ghost.zip
# previous-major:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - run: git submodule update --init --force --recursive --depth=1
# - uses: actions/setup-node@v1
# with:
# node-version: '10'
# - run: npm install -g ghost-cli@latest
# - run: zip -r ghost.zip .
# - run: mkdir test
# - run: ghost install v2 --local -d test
# - run: ghost update -f -d test --zip ../ghost.zip
- uses: actions/setup-node@v1
with:
node-version: '10'
- run: npm install -g ghost-cli@latest
- run: zip -r ghost.zip .
- name: Clean Install
run: |
DIR=$(mktemp -d)
ghost install local -d $DIR --zip $GITHUB_WORKSPACE/ghost.zip
- name: Latest Release
run: |
DIR=$(mktemp -d)
ghost install local -d $DIR
ghost update -d $DIR --zip $GITHUB_WORKSPACE/ghost.zip
# - name: Previous Major
# run: |
# DIR=$(mktemp -d)
# ghost install v2 --local -d $DIR
# ghost update -f -d $DIR --zip $GITHUB_WORKSPACE/ghost.zip