fix: 解决动态路径生成方法被覆盖的问题 Fixed dynamic path generation method is overridden #37
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: 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 |