Skip to content

Commit

Permalink
chore: deploy 0.1.18 version
Browse files Browse the repository at this point in the history
  • Loading branch information
rycont committed Dec 6, 2024
1 parent 4cc6ab4 commit 9cbb001
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish-quickjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 0.1.x
paths:
- 'quickjs/deno.json'

Expand Down Expand Up @@ -30,7 +31,7 @@ jobs:
working-directory: ${{ env.working-directory }}

- name: Run tests
run: deno test --allow-read
run: deno test --allow-read --allow-net
working-directory: ${{ env.working-directory }}

- name: Publish to JSR
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- 0.1.x
paths:
- 'deno.json'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-quickjs.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Test - QuickJS
on:
push:
branches: ['main']
branches: ['main', '0.1.x']
pull_request:
branches: ['main']
branches: ['main', '0.1.x']

jobs:
Test:
Expand All @@ -29,5 +29,5 @@ jobs:
working-directory: ${{ env.working-directory }}

- name: Run tests
run: deno test --allow-read
run: deno test --allow-read --allow-net
working-directory: ${{ env.working-directory }}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Test

on:
push:
branches: ['main']
branches: ['main', '0.1.x']
pull_request:
branches: ['main']
branches: ['main', '0.1.x']

permissions:
contents: read
Expand Down
6 changes: 3 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"vue": "npm:vue@^3.5.12"
},
"tasks": {
"coverage": "rm -rf ./cov && deno test --allow-read --parallel --coverage=cov && deno coverage --detailed ./cov && rm -rf ./cov",
"coverage-list": "rm -rf ./cov && deno test --allow-read --parallel --coverage=cov && deno coverage ./cov && rm -rf ./cov",
"coverage": "rm -rf ./cov && deno test --allow-read --allow-net --parallel --coverage=cov && deno coverage --detailed ./cov && rm -rf ./cov",
"coverage-list": "rm -rf ./cov && deno test --allow-read --allow-net --parallel --coverage=cov && deno coverage ./cov && rm -rf ./cov",
"test": "deno run -A npm:madge --circular --extensions ts ./ && deno test --allow-read --allow-net --parallel && deno publish --dry-run",
"typedoc": "deno run --allow-read --allow-write --allow-env --allow-run ./create-docs.ts",
"vitepress-dev": "deno run -A npm:vitepress dev docs",
Expand All @@ -34,7 +34,7 @@
}
},
"name": "@yaksok-ts/core",
"version": "0.1.18-alpha.3",
"version": "0.1.18",
"exports": "./src/mod.ts",
"nodeModulesDir": "auto",
"workspace": [
Expand Down
2 changes: 1 addition & 1 deletion quickjs/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"quickjs-emscripten": "npm:quickjs-emscripten@^0.31.0",
"quickjs-emscripten-core": "npm:quickjs-emscripten-core@^0.31.0"
},
"version": "0.1.18-alpha.3"
"version": "0.1.18"
}

0 comments on commit 9cbb001

Please sign in to comment.