check-source-domain.yml 719 B

123456789101112131415161718192021222324252627
  1. name: Check Domain Availability
  2. on:
  3. # manual trigger only
  4. workflow_dispatch:
  5. jobs:
  6. check:
  7. name: Check
  8. runs-on: ubuntu-latest
  9. steps:
  10. # - name: Tune GitHub-hosted runner network
  11. # # https://github.com/actions/runner-images/issues/1187
  12. # uses: smorimoto/tune-github-hosted-runner-network@v1
  13. - name: Checkout
  14. uses: actions/checkout@v4
  15. with:
  16. persist-credentials: false
  17. - uses: pnpm/action-setup@v4
  18. with:
  19. run_install: false
  20. - uses: actions/setup-node@v4
  21. with:
  22. node-version-file: ".node-version"
  23. cache: "pnpm"
  24. - run: pnpm install
  25. - run: pnpm run node Build/validate-domain-alive.ts