Ghost/ghost/portal/.github/workflows/test.yml
Rishabh a114654e89 Reverted to bring back changes from 1.7.3
This reverts commit c2707d426a.
The changes for 1.7.3 were reverted as a temporary step due to a major bug in Portal link handling.
This commit brings back the changes followed by a patch for new release
2021-07-09 06:31:14 +05:30

26 lines
449 B
YAML

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
node: [ '14' ]
env:
FORCE_COLOR: 1
CI: true
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn build
- run: yarn test