Skip to content

Commit 59d2031

Browse files
author
Patrick Housley
committed
fix: Typo in type declarations
1 parent bbec171 commit 59d2031

File tree

6 files changed

+1171
-14
lines changed

6 files changed

+1171
-14
lines changed

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,27 @@ jobs:
2727
coverage: true
2828
secrets: inherit
2929

30+
types-test:
31+
runs-on: ubuntu-latest
32+
name: Types Test
33+
if: github.event_name == 'pull_request'
34+
timeout-minutes: 30
35+
defaults:
36+
run:
37+
shell: bash
38+
steps:
39+
- uses: actions/checkout@v3
40+
with:
41+
ref: ${{ github.ref }}
42+
- uses: actions/setup-node@v3
43+
with:
44+
node-version: lts/*
45+
- name: Install dependencies
46+
run: npm ci
47+
- name: Running types build
48+
run: |
49+
npm run npm:build:types
50+
3051
eslint:
3152
name: ESLint
3253
if: github.event_name == 'pull_request'

0 commit comments

Comments
 (0)