Skip to content

Add pre/postinstall scripts to prevent 'npm install' command from fai… #6326

Add pre/postinstall scripts to prevent 'npm install' command from fai…

Add pre/postinstall scripts to prevent 'npm install' command from fai… #6326

Workflow file for this run

name: cartodb check NEWS.md
on:
push:
branches-ignore:
- master
jobs:
cartodb-news:
runs-on: ubuntu-18.04
steps:
- name: Checkout current repository
uses: actions/checkout@v1
- name: Check NEWS.md was updated
run: if git diff $(git merge-base $(git rev-parse HEAD) origin/master) --name-only | grep NEWS.md > /dev/null; then exit 0; else exit 1; fi