excalidraw/.github/workflows/changelog-check.yml
Aakansha Doshi 37f53bccbf
Revert the changelog check of excluding the branches (#2590)
* temp commit

* fix

* fix

* Update actionAlign.tsx
2020-12-14 22:41:00 +02:00

27 lines
441 B
YAML

name: Changelog in sync for packages
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install and run changelog check
run: |
npm ci
npm run changelog:check
env:
CI: true