Skip to content

Commit 06fde1a

Browse files
committed
Update CI (now perform tests) and update version
1 parent 903126a commit 06fde1a

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,14 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717

18+
# Run tests before publishing
19+
- name: Setup Deno
20+
uses: denoland/setup-deno@v2
21+
with:
22+
deno-version: v2.x
23+
24+
- name: Run tests
25+
run: deno test
26+
1827
- name: Publish package
19-
run: npx jsr publish
28+
run: deno publish

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@functions/mock",
33
"description": "Lightweight utility to generate realistic mock data for tests fast.",
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"license": "MIT",
66
"exports": "./mod.ts",
77
"tasks": {

0 commit comments

Comments
 (0)