diff --git a/.circleci/config.yml b/.circleci/config.yml index 99144032ddd..a97130f4481 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,6 +65,13 @@ jobs: - setup-node - run: npm run lint + Changesets: + docker: + - image: cimg/base:stable + steps: + - setup-node + - run: npm run changeset-check + Spell check: docker: - image: cimg/base:stable @@ -106,3 +113,4 @@ workflows: - ESLint - Spell check - Smoke test built package + - Changesets diff --git a/package.json b/package.json index e9d0f74d0d1..4a4ba5678fd 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,8 @@ "prettier-check": "prettier --check .", "prettier-fix": "prettier --write .", "spell-check": "cspell lint '**' --no-progress || (echo 'Add any real words to cspell-dict.txt.'; exit 1)", - "changeset-publish": "changeset publish" + "changeset-publish": "changeset publish", + "changeset-check": "changeset status --verbose --since=origin/version-4" }, "workspaces": [ "packages/*"