cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
generated-bbc0434d78

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/ci.yml

30lines · modecode

1name: CI
2on:
3 push:
4 branches:
5 - main
6 pull_request:
7 branches:
8 - main
9
10jobs:
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