registry-check #800
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
# Checks registry against metadataCoverageReport (current release) | |
name: registry-check | |
on: | |
workflow_dispatch: | |
schedule: | |
# early in the morning (cron is GMT) | |
- cron: 8 22 * * * | |
jobs: | |
registry-check: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test:registry |