Skip to content

添加cli可配置动态方法连接符和是否添加方法名 Dynamic method connector and whether to add a method name #40

添加cli可配置动态方法连接符和是否添加方法名 Dynamic method connector and whether to add a method name

添加cli可配置动态方法连接符和是否添加方法名 Dynamic method connector and whether to add a method name #40

Workflow file for this run

name: Deno PR check
on:
workflow_call:
pull_request:
branches: ['master']
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/[email protected]
- name: Setup Deno
uses: denoland/[email protected]
with:
deno-version: v1.x
# Uncomment this step to verify the use of 'deno fmt' on each commit.
- name: Verify formatting
run: deno fmt --check
- name: Run linter
run: deno lint
- name: Run tests
run: deno test -A