Ghost/.github/workflows/ghost-cli.yml
Daniel Lockyer a7fde48d1d Added GitHub Action for testing with Ghost-CLI
no issue

- this helps prevent issues with Ghost-CLI compatibility
2020-01-29 15:39:21 +00:00

21 lines
425 B
YAML

name: Ghost-CLI
on:
pull_request:
push:
branches:
- master
jobs:
build:
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 --zip ../ghost.zip
working-directory: test