Skip to content

Use npm config instead of GIT global config #6328

Use npm config instead of GIT global config

Use npm config instead of GIT global config #6328

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