Skip to content

Commit

Permalink
Merge pull request #353 from dajiaji/use-deno-task-dnt-on-bun-ci
Browse files Browse the repository at this point in the history
Use deno task dnt.
  • Loading branch information
dajiaji authored Aug 29, 2024
2 parents 59cc9a3 + dd39866 commit 7c1fce6
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/ci_bun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm install -g esbuild
- name: Prepare test for ./x/core
working-directory: ./x/core
run: deno run -A dnt.ts
run: deno task dnt
- name: Run npm pack for ./x/core
working-directory: ./npm-packages/x/core
run: npm pack
Expand All @@ -45,8 +45,7 @@ jobs:
deno test core.spec.ts --allow-net --config ../../../deno.json
- name: Prepare test for ./x/chacha20poly1305
working-directory: ./x/chacha20poly1305
run: |
deno run -A dnt.ts
run: deno task dnt
- name: Run npm pack for ./x/chacha20poly1305
working-directory: ./npm-packages/x/chacha20poly1305
run: npm pack
Expand All @@ -59,8 +58,7 @@ jobs:
deno test chacha20poly1305.spec.ts --allow-net --config ../../../deno.json
- name: Prepare test for ./x/dhkem-x25519
working-directory: ./x/dhkem-x25519
run: |
deno task dnt
run: deno task dnt
- name: Run npm pack for ./x/dhkem-x25519
working-directory: ./npm-packages/x/dhkem-x25519
run: npm pack
Expand All @@ -73,8 +71,7 @@ jobs:
deno test dhkem-x25519.spec.ts --allow-net --config ../../../deno.json
- name: Prepare test for ./x/dhkem-x448
working-directory: ./x/dhkem-x448
run: |
deno task dnt
run: deno task dnt
- name: Run npm pack for ./x/dhkem-x448
working-directory: ./npm-packages/x/dhkem-x448
run: npm pack
Expand All @@ -87,8 +84,7 @@ jobs:
deno test dhkem-x448.spec.ts --allow-net --config ../../../deno.json
- name: Prepare test for ./x/dhkem-secp256k1
working-directory: ./x/dhkem-secp256k1
run: |
deno task dnt
run: deno task dnt
- name: Run npm pack for ./x/dhkem-secp256k1
working-directory: ./npm-packages/x/dhkem-secp256k1
run: npm pack
Expand All @@ -101,8 +97,7 @@ jobs:
deno test dhkem-secp256k1.spec.ts --allow-net --config ../../../deno.json
- name: Prepare test for ./x/hybridkem-x25519-kyber768
working-directory: ./x/hybridkem-x25519-kyber768
run: |
deno task dnt
run: deno task dnt
- name: Run npm pack for ./x/hybridkem-x25519-kyber768
working-directory: ./npm-packages/x/hybridkem-x25519-kyber768
run: npm pack
Expand All @@ -115,9 +110,7 @@ jobs:
deno test hybridkem-x25519-kyber768.spec.ts --allow-net --config ../../../deno.json
- name: Prepare test for ./x/hpke-js
working-directory: ./x/hpke-js
run: |
deno run -A dnt.ts
deno task minify > test/runtimes/hpke.js
run: deno task dnt
- name: Run npm pack for ./x/hpke-js
working-directory: ./npm-packages/x/hpke-js
run: npm pack
Expand Down

0 comments on commit 7c1fce6

Please sign in to comment.