Include types when building for publish #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate_Vendors | |
on: | |
push: | |
branches: | |
- main | |
- patch-release | |
paths: | |
- "package.json" | |
pull_request: | |
paths: | |
- "package.json" | |
jobs: | |
validate-vendor-versions: | |
name: Validate Vendor Versions | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: "yarn" | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Validate Vendors | |
run: yarn run vendors:bundle && echo "Listing changed files:" && git diff --name-only --exit-code && echo "No files changed." |