cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
.github/workflows/ci.yml
30lines · modecode
| 1 | name: CI |
| 2 | on: |
| 3 | push: |
| 4 | branches: |
| 5 | - main |
| 6 | pull_request: |
| 7 | branches: |
| 8 | - main |
| 9 | |
| 10 | jobs: |
| 11 | lint: |
| 12 | name: lint |
| 13 | runs-on: ubuntu-latest |
| 14 | |
| 15 | |
| 16 | steps: |
| 17 | - uses: actions/checkout@v4 |
| 18 | |
| 19 | - name: Set up Node |
| 20 | uses: actions/setup-node@v4 |
| 21 | with: |
| 22 | node-version: '18' |
| 23 | |
| 24 | - name: Install dependencies |
| 25 | run: | |
| 26 | yarn install |
| 27 | |
| 28 | - name: Check types |
| 29 | run: | |
| 30 | yarn build |
| 31 | |