Change ddc#set_static_import_path() spec #984
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 | |
env: | |
DENO_VERSION: 1.x | |
DENOPS_PATH: "./" | |
on: | |
schedule: | |
- cron: "0 7 * * 0" | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
deno-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: denoland/setup-deno@main | |
with: | |
deno-version: ${{ env.DENO_VERSION }} | |
- name: Check Type | |
run: | | |
echo "export const mods = {};" > denops/ddc/_mods.js | |
find denops -name "*.ts"| xargs deno test --unstable --no-run -A | |
- name: Check with deno lint | |
run: deno lint denops | |
- name: Check Format | |
run: | | |
deno fmt --check denops Makefile .github | |
deno-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: denoland/setup-deno@main | |
with: | |
deno-version: ${{ env.DENO_VERSION }} | |
- name: Test | |
run: | | |
echo "export const mods = {};" > denops/ddc/_mods.js | |
grep -rl Deno.test denops| xargs deno test --unstable -A | |
timeout-minutes: 5 |