Skip to content

Commit 57f8862

Browse files
committed
Update DENO_VERSION
1 parent b2f40b1 commit 57f8862

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.github/workflows/deno.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: deno
22

33
env:
4-
DENO_VERSION: 1.x
4+
DENO_VERSION: 2.x
55
DENOPS_PATH: "./"
66

77
on:
@@ -46,3 +46,14 @@ jobs:
4646
run: |
4747
grep -rl Deno.test denops| xargs deno test --unstable -A
4848
timeout-minutes: 5
49+
50+
deno-test-publish:
51+
runs-on: ubuntu-latest
52+
steps:
53+
- uses: actions/checkout@v4
54+
- uses: denoland/setup-deno@main
55+
with:
56+
deno-version: ${{ env.DENO_VERSION }}
57+
58+
- name: Test Publish
59+
run: deno task test:publish

deno.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"lock": false,
33
"tasks": {
4-
"cache": "deno cache --reload denops/**/*.ts",
4+
"cache": "deno install --reload",
55
"check": "deno check denops/**/*.ts",
66
"fmt": "deno fmt denops",
77
"lint": "deno lint denops",
88
"lint-fix": "deno lint --fix denops",
9-
"publish": "deno publish --dry-run --allow-dirty",
109
"test": "deno test -A --doc --parallel --shuffle denops/**/*.ts",
10+
"test:publish": "deno publish --dry-run --allow-dirty --set-version 0.0.0",
1111
"update": "deno outdated --recursive",
1212
"upgrade": "deno outdated --recursive --update"
1313
},

denops/ddc/deno.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "@shougo/ddc-vim",
3-
"version": "0.0.0",
43
"exports": {
54
"./config": "./base/config.ts",
65
"./filter": "./base/filter.ts",

0 commit comments

Comments
 (0)