Skip to content

Commit ada8ad2

Browse files
fix: Typo in type declarations (#634)
Co-authored-by: Jordan Porter <[email protected]>
1 parent 4bb3e81 commit ada8ad2

File tree

5 files changed

+717
-20566
lines changed

5 files changed

+717
-20566
lines changed

.github/workflows/pull-request-checks.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,30 @@ jobs:
1616
coverage: true
1717
secrets: inherit
1818

19+
types-test:
20+
runs-on: ubuntu-latest
21+
name: Types Test
22+
if: github.event_name == 'pull_request'
23+
timeout-minutes: 30
24+
defaults:
25+
run:
26+
shell: bash
27+
steps:
28+
- uses: actions/checkout@v3
29+
with:
30+
ref: ${{ github.ref }}
31+
- uses: actions/setup-node@v3
32+
with:
33+
node-version: lts/*
34+
- name: Install dependencies
35+
run: npm ci
36+
- name: Running types build
37+
run: |
38+
npm run npm:build:types
39+
- name: Running types tests
40+
run: |
41+
npm run test:types
42+
1943
eslint:
2044
name: ESLint
2145
if: github.event_name == 'pull_request'

0 commit comments

Comments
 (0)