Skip to content

Fix link to doc from deno.land to jsr.io. #748

Fix link to doc from deno.land to jsr.io.

Fix link to doc from deno.land to jsr.io. #748

Workflow file for this run

name: bun CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
# strategy:
# matrix:
# bun-version: [0.6.x, 0.7.x, 0.8.x, 1.x]
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- uses: actions/setup-node@v4
with:
node-version: v20.x
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install esbuild
run: npm install -g esbuild
- name: Prepare test
run: |
deno task npm
deno task bun-link
- name: Run test for ./x/core
working-directory: ./x/core/test/runtimes/bun
run: |
bun install
nohup bun src/index.ts &
sleep 3
deno test core.spec.ts --allow-net --config ../../../deno.json
- name: Run test for ./x/chacha20poly1305
working-directory: ./x/chacha20poly1305/test/runtimes/bun
run: |
bun install
nohup bun src/index.ts &
sleep 3
deno test chacha20poly1305.spec.ts --allow-net --config ../../../deno.json
- name: Run test for ./x/dhkem-x25519
working-directory: ./x/dhkem-x25519/test/runtimes/bun
run: |
bun install
nohup bun src/index.ts &
sleep 3
deno test dhkem-x25519.spec.ts --allow-net --config ../../../deno.json
- name: Run test for ./x/dhkem-x448
working-directory: ./x/dhkem-x448/test/runtimes/bun
run: |
bun install
nohup bun src/index.ts &
sleep 3
deno test dhkem-x448.spec.ts --allow-net --config ../../../deno.json
- name: Run test for ./x/dhkem-secp256k1
working-directory: ./x/dhkem-secp256k1/test/runtimes/bun
run: |
bun install
nohup bun src/index.ts &
sleep 3
deno test dhkem-secp256k1.spec.ts --allow-net --config ../../../deno.json
- name: Run test for ./x/hybridkem-x25519-kyber768
working-directory: ./x/hybridkem-x25519-kyber768/test/runtimes/bun
run: |
bun install
nohup bun src/index.ts &
sleep 3
deno test hybridkem-x25519-kyber768.spec.ts --allow-net --config ../../../deno.json
- name: Run test for ./x/hpke-js
working-directory: ./x/hpke-js/test/runtimes/bun
run: |
bun install
nohup bun run src/index.ts &
sleep 3
deno test hpke.spec.ts --allow-net --config ../../../deno.json