Skip to content

Commit

Permalink
ci: add registry-check-preview [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Aug 22, 2022
1 parent a6ff343 commit 4efa243
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/registryCheckPreview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: registry-check
on:
workflow_dispatch:
schedule:
# weekly on Monday morning
- cron: 34 3 * * 1

jobs:
registry-check:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: latest
- run: yarn install
- run: yarn build
- run: yarn metadata:preview
env:
DEFAULT_SLACK_WEBHOOK: ${{ secrets.CLI_TEAM_SLACK_WEBHOOK_URL }}


0 comments on commit 4efa243

Please sign in to comment.