feat: fill ctx.match
and add ctx.commandMatch
#203
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: ci | |
on: | |
push: | |
branches: | |
- main | |
- next | |
pull_request: | |
branches: | |
- main | |
- next | |
jobs: | |
backport: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: 2.x | |
- run: npm install --ignore-scripts | |
- run: npm run backport | |
fmt-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: 2.x | |
- run: deno fmt --check | |
- run: deno lint | |
test: | |
runs-on: ${{ matrix.os }} # runs a test on Ubuntu, Windows and macOS | |
strategy: | |
matrix: | |
os: [macOS-latest, windows-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: 2.x | |
- run: deno cache -I src/mod.ts | |
- run: deno task test | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: 2.x | |
- run: deno task coverage | |
- uses: codecov/codecov-action@v1.0.10 # upload the report on Codecov | |
with: | |
file: ./coverage.lcov |