Update @types/node 20.17.7 → 22.9.0 (major) #86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify Pull Request | |
on: | |
pull_request: | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@main | |
- name: "Setup Node 20" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: "Install dependencies" | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
run_install: | | |
- args: [--frozen-lockfile] | |
- name: "Run typecheck" | |
run: pnpm run typecheck | |
- name: "Run eslint" | |
run: pnpm run lint | |
- name: "Build Image" | |
run: docker build . --tag ghcr.io/vaaski/telegram-ytdl:latest |