| 123456789101112131415161718192021222324252627 |
- name: Check Domain Availability
- on:
- # manual trigger only
- workflow_dispatch:
- jobs:
- build:
- name: Build
- runs-on: ubuntu-latest
- steps:
- - name: Tune GitHub-hosted runner network
- # https://github.com/actions/runner-images/issues/1187
- uses: smorimoto/tune-github-hosted-runner-network@v1
- - name: Checkout
- uses: actions/checkout@v4
- with:
- persist-credentials: false
- - uses: pnpm/action-setup@v4
- with:
- run_install: false
- - uses: actions/setup-node@v4
- with:
- node-version-file: ".node-version"
- cache: "pnpm"
- - run: pnpm install
- - run: pnpm run node Build/validate-domain-alive.ts
|