We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903126a commit 06fde1aCopy full SHA for 06fde1a
.github/workflows/publish.yml
@@ -15,5 +15,14 @@ jobs:
15
steps:
16
- uses: actions/checkout@v4
17
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
27
- name: Publish package
- run: npx jsr publish
28
+ run: deno publish
deno.json
@@ -1,7 +1,7 @@
1
{
2
"name": "@functions/mock",
3
"description": "Lightweight utility to generate realistic mock data for tests fast.",
4
- "version": "1.1.2",
+ "version": "1.1.3",
5
"license": "MIT",
6
"exports": "./mod.ts",
7
"tasks": {
0 commit comments