Skip to content

Commit 59967c2

Browse files
committed
Chore: Update deps and workflows
1 parent b5659fb commit 59967c2

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/configure-pages@v3
3535

3636
- name: Install Deno
37-
uses: denoland/setup-deno@v1
37+
uses: denoland/setup-deno@v2
3838
with:
3939
deno-version: "v2.0.2"
4040

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Cross Runtime Tests
22

33
on:
44
push:
5-
branches: [main, dev, dev-9.0]
5+
branches: [main, dev]
66
pull_request:
7-
branches: [main, dev, dev-9.0]
7+
branches: [main, dev]
88

99
jobs:
1010
deno_ci:

deno.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hexagon/croner",
3-
"version": "9.0.1-dev.0",
3+
"version": "9.0.1-dev.1",
44
"exports": "./src/croner.ts",
55
"lint": {
66
"include": ["src", "build"]
@@ -11,19 +11,19 @@
1111
},
1212
"tasks": {
1313
"pre-commit": "deno fmt --check && deno lint && deno check src/croner.ts",
14-
"test": "deno task build:clean && deno test --allow-read",
15-
"build:prep": "deno cache --allow-scripts=npm:esbuild build/build.ts",
14+
"test": "deno task build:prep && deno test --allow-read",
15+
"build:prep": "deno install",
1616
"build:clean": "deno run --allow-read --allow-write --allow-env build/build.ts -- clean",
1717
"build:npm": "deno run --allow-read --allow-write --allow-env build/build.ts -- package",
1818
"build:esbuild": "deno run --allow-read --allow-write --allow-env --allow-run build/build.ts -- build",
19-
"build": "deno task build:clean && deno task test && deno task build:prep && deno task build:esbuild && deno task build:npm",
19+
"build": "deno task build:clean && deno task build:prep && deno test --allow-read && deno task build:esbuild && deno task build:npm",
2020
"check-deps": "deno run -A jsr:@check/deps"
2121
},
2222
"imports": {
2323
"@cross/fs": "jsr:@cross/fs@~0.1.11",
2424
"@cross/test": "jsr:@cross/test@~0.0.9",
2525
"@std/assert": "jsr:@std/assert@~1.0.6",
26-
"@std/path": "jsr:@std/path@~1.0.6",
26+
"@std/path": "jsr:@std/path@~1.0.7",
2727
"esbuild": "npm:esbuild@~0.24.0",
2828
"esbuild-plugin-d.ts": "npm:esbuild-plugin-d.ts@~1.3.1"
2929
},

0 commit comments

Comments
 (0)