Sync package version and name between jsr and npm. #859
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 17.x, 18.x, 19.x, 20.x, 21.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Run dnt & minify | |
run: | | |
npm install -g esbuild | |
- name: Run dnt & minify for /core | |
working-directory: ./x/core | |
run: | | |
deno task dnt | |
deno task minify > ../../npm-packages/x/core/hpke-core.min.js | |
- name: Run dnt & minify for /x/chacha20poly1305 | |
working-directory: ./x/chacha20poly1305 | |
run: | | |
deno task dnt | |
deno task minify > ../../npm-packages/x/chacha20poly1305/hpke-chacha20poly1305.min.js | |
- name: Run dnt & minify for /x/dhkem-x25519 | |
working-directory: ./x/dhkem-x25519 | |
run: | | |
deno task dnt | |
deno task minify > ../../npm-packages/x/dhkem-x25519/hpke-dhkem-x25519.min.js | |
- name: Run dnt & minify for /x/dhkem-x448 | |
working-directory: ./x/dhkem-x448 | |
run: | | |
deno task dnt | |
deno task minify > ../../npm-packages/x/dhkem-x448/hpke-dhkem-x448.min.js | |
- name: Run dnt & minify for /x/hybridkem-x25519-kyber768 | |
working-directory: ./x/hybridkem-x25519-kyber768 | |
run: | | |
deno task dnt | |
deno task minify > ../../npm-packages/x/hybridkem-x25519-kyber768/hpke-hybridkem-x25519-kyber768.min.js | |
- name: Run dnt & minify for /x/dhkem-secp256k1 | |
working-directory: ./x/dhkem-secp256k1 | |
run: | | |
deno task dnt | |
deno task minify > ../../npm-packages/x/dhkem-secp256k1/hpke-dhkem-secp256k1.min.js | |
- name: Run dnt & minify for /x/hpke-js | |
working-directory: ./x/hpke-js | |
run: | | |
deno task dnt | |
deno task minify > ../../npm-packages/x/hpke-js/hpke.min.js |