changelog-check.yml 441 B

1234567891011121314151617181920212223242526
  1. name: Changelog in sync for packages
  2. on:
  3. push:
  4. branches:
  5. - master
  6. pull_request:
  7. jobs:
  8. test:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v1
  12. - name: Setup Node.js 12.x
  13. uses: actions/setup-node@v1
  14. with:
  15. node-version: 12.x
  16. - name: Install and run changelog check
  17. run: |
  18. npm ci
  19. npm run changelog:check
  20. env:
  21. CI: true