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 typescript from 5.1.6 to 5.2.2 #188

Merged
merged 5 commits into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from 4 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
19 changes: 16 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ on:
jobs:
build-and-test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -22,4 +20,19 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm run typecheck

auto-merge:
if: github.event_name == 'pull_request' && github.actor == 'dependabot[bot]'
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
needs: build-and-test
steps:
- uses: actions/checkout@v3
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
command: squash and merge
github-token: ${{ secrets.GITHUB_TOKEN }}
27 changes: 13 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@grammyjs/types": "3.1.3",
"callback-data": "1.0.2",
"dotenv": "16.3.1",
"fastify": "4.21.0",
"fastify": "4.22.0",
"grammy": "1.17.2",
"grammy-guard": "0.5.0",
"iso-639-1": "2.1.15",
Expand All @@ -45,15 +45,15 @@
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-unicorn": "48.0.1",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "3.0.1",
"prettier-plugin-organize-imports": "3.2.3",
"tsc-watch": "6.0.4",
"typescript": "5.1.6"
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.0.0",
Expand Down