Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to typescript-eslint/utils 6.x #71

Merged
merged 6 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 3 additions & 33 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,49 +47,19 @@ jobs:
- name: 'Test with Eslint v7'
cmd: |
npm i eslint@^7 \
@typescript-eslint/parser@^4 \
@typescript-eslint/eslint-plugin@^4
typescript-eslint-utils-5@npm:@typescript-eslint/utils@^5.57.0
cat package-lock.json | grep -A 1 \
-e "\"node_modules/eslint\": {" \
-e "\"node_modules/@typescript-eslint/parser\": {" \
-e "\"node_modules/@typescript-eslint/eslint-plugin\": {"
test: npm run test
build: npm run build
- name: 'Test with Eslint v6'
cmd: |
npm i eslint@^6 \
@typescript-eslint/parser@^3 \
@typescript-eslint/eslint-plugin@^3
cat package-lock.json | grep -A 1 \
-e "\"node_modules/eslint\": {" \
-e "\"node_modules/@typescript-eslint/parser\": {" \
-e "\"node_modules/@typescript-eslint/eslint-plugin\": {"
-e "\"node_modules/typescript-eslint-utils-5\": {" \
test: npm run test
build: npm run build
- name: 'Test with Typescript v4'
cmd: |
npm i typescript@^4
npm i typescript@^4.2
cat package-lock.json | grep -A 1 \
-e "\"node_modules/typescript\": {"
test: npm run test
build: npm run build
- name: 'Test with Typescript v3.7.5'
cmd: |
npm i -D jest@~27.0.0 \
ts-jest@~27.0.0 \
@types/jest@~27.0.0 \
@types/node@^16.0.0 \
@typescript-eslint/eslint-plugin@5.0.0 \
@typescript-eslint/parser@5.0.0 \
eslint@~8.0.0 \
--force
npm i typescript@3.7.5 --force
cat package-lock.json | grep -A 1 \
-e "\"node_modules/typescript\": {" \
-e "\"node_modules/jest\": {" \
-e "\"node_modules/ts-jest\": {"
test: BC_MODE=1 npm run test
build: false
name: '[BC] ${{ matrix.name }}'
steps:
- uses: actions/setup-node@v3
Expand Down
Loading