changelog-check.yml 503 B

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