-
Notifications
You must be signed in to change notification settings - Fork 7
chore: steal CI from @grammyjs/conversations #21
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
Open
KnightNiwrem
wants to merge
12
commits into
grammyjs:main
Choose a base branch
from
KnightNiwrem:claude/ci-setup-mamr2p
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
e60ac40
ci: add GitHub Actions workflow with backport, lint, test, and covera…
claude b3fbf0a
ci: address review findings
claude 04b8fea
Update deno.jsonc
KnightNiwrem c8c6bfb
Update deno.jsonc
KnightNiwrem c5d6ee4
Upgrade checkout action and modify dependency caching
KnightNiwrem 3243c60
Modify 'ok' task in deno.jsonc
KnightNiwrem 3f17c77
Upgrade actions/checkout to v7 and deno commands
KnightNiwrem a772909
Fix coverage task command in deno.jsonc
KnightNiwrem dc09446
fix: checkout v7, add deno check to CI
KnightNiwrem 2a21849
fix: setup node v7
KnightNiwrem 480e4e4
Update 'ok' task to include 'deno check'
KnightNiwrem d6fe07f
chore: remove redundant deno task report, point coverage to lcov.info
KnightNiwrem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| # This workflow uses actions that are not certified by GitHub. | ||
| # They are provided by a third-party and are governed by | ||
| # separate terms of service, privacy policy, and support | ||
| # documentation. | ||
|
|
||
| # This workflow will install Deno and run tests across stable and nightly builds on Windows, Ubuntu and macOS. | ||
| # For more information see: https://github.com/denolib/setup-deno | ||
|
|
||
| name: grammY validator | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| backport: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Setup repo | ||
| uses: actions/checkout@v7 | ||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - name: Setup Node | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: 24 | ||
|
|
||
| - name: Install dependencies | ||
| run: npm install --ignore-scripts | ||
|
|
||
| - name: Run backporting | ||
| run: npm run backport | ||
|
|
||
| format-and-lint: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Setup repo | ||
| uses: actions/checkout@v7 | ||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - uses: denoland/setup-deno@v2 | ||
| with: | ||
| deno-version: v2.x | ||
|
|
||
| - name: Check Format | ||
| run: deno fmt --check | ||
|
|
||
| - name: Lint | ||
| run: deno lint | ||
|
|
||
| - name: Type Check | ||
| run: deno check | ||
|
|
||
| test: | ||
| runs-on: ${{ matrix.os }} # runs a test on Ubuntu, Windows and macOS | ||
|
|
||
| strategy: | ||
| matrix: | ||
| os: [macOS-latest, windows-latest, ubuntu-latest] | ||
|
|
||
| steps: | ||
| - name: Setup repo | ||
| uses: actions/checkout@v7 | ||
| with: | ||
| persist-credentials: false | ||
|
|
||
| - uses: denoland/setup-deno@v2 | ||
| with: | ||
| deno-version: v2.x | ||
|
|
||
| - name: Cache Dependencies | ||
| run: deno install | ||
|
|
||
| - name: Run Tests | ||
| run: deno test | ||
|
|
||
| coverage: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Setup repo | ||
| uses: actions/checkout@v7 | ||
| with: | ||
| fetch-depth: 0 | ||
| persist-credentials: false | ||
|
|
||
| - uses: denoland/setup-deno@v2 | ||
| with: | ||
| deno-version: v2.x | ||
|
|
||
| - name: Create coverage files | ||
| run: deno task coverage | ||
|
|
||
| - name: Collect coverage | ||
| uses: codecov/codecov-action@v7 # upload the report on Codecov | ||
|
KnightNiwrem marked this conversation as resolved.
|
||
| with: | ||
| files: ./test/cov_profile/lcov.info | ||
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.