0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Added basic github workflow for running tests

- copied from https://github.com/TryGhost/billing-management/blob/master/.github/workflows/test.yml
This commit is contained in:
Hannah Wolfe 2020-04-10 16:42:25 +01:00
parent 4c358d2cec
commit af543c0cc9

25
ghost/portal/.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Test
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
node: [ '10', '12' ]
env:
FORCE_COLOR: 1
CI: true
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn build
- run: yarn test