Skip to content

Commit bab6a75

Browse files
committed
Fix install script in type-check.yml
1 parent e5b553f commit bab6a75

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/type-check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,18 @@ jobs:
6060
run: npm install
6161
working-directory: test-published-types
6262

63-
- name: install packed lib
64-
run: npm install --no-save "$ESLINT_PLUGIN_REACT_PATH"
65-
working-directory: test-published-types
66-
67-
- name: install typescript version ${{ matrix.ts_version }}
68-
run: npm install --no-save typescript@${{ matrix.ts_version }}
63+
- name: install eslint-plugin-react and typescript version ${{ matrix.ts_version }}
64+
run: npm install --no-save "$ESLINT_PLUGIN_REACT_PATH" typescript@${{ matrix.ts_version }}
6965
working-directory: test-published-types
7066

7167
- name: show installed typescript version
7268
run: npm list typescript --depth=0
7369
working-directory: test-published-types
7470

71+
- name: show installed eslint-plugin-react version
72+
run: npm list eslint-plugin-react --depth=0
73+
working-directory: test-published-types
74+
7575
- name: check types with lib "${{ matrix.ts_lib }}"
7676
run: npx tsc --lib ${{ matrix.ts_lib }}
7777
working-directory: test-published-types

0 commit comments

Comments
 (0)