Skip to content

Commit

Permalink
Fix install script in type-check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ocavue committed Oct 17, 2024
1 parent e5b553f commit bab6a75
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,18 @@ jobs:
run: npm install
working-directory: test-published-types

- name: install packed lib
run: npm install --no-save "$ESLINT_PLUGIN_REACT_PATH"
working-directory: test-published-types

- name: install typescript version ${{ matrix.ts_version }}
run: npm install --no-save typescript@${{ matrix.ts_version }}
- name: install eslint-plugin-react and typescript version ${{ matrix.ts_version }}
run: npm install --no-save "$ESLINT_PLUGIN_REACT_PATH" typescript@${{ matrix.ts_version }}
working-directory: test-published-types

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

- name: show installed eslint-plugin-react version
run: npm list eslint-plugin-react --depth=0
working-directory: test-published-types

- name: check types with lib "${{ matrix.ts_lib }}"
run: npx tsc --lib ${{ matrix.ts_lib }}
working-directory: test-published-types

0 comments on commit bab6a75

Please sign in to comment.