Bump @ecies/ciphers from 0.2.0 to 0.2.1 #891
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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
node: [18, 20, 22] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
cache-dependency-path: pnpm-lock.yaml | |
- run: pnpm install && pnpm test -- --bail 1 | |
- run: pnpm run build && npm publish --dry-run | |
- uses: codecov/codecov-action@v4 | |
if: matrix.os == 'ubuntu-latest' && matrix.node == 22 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
check-runtimes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: pnpm | |
cache-dependency-path: pnpm-lock.yaml | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- run: pnpm install && pnpm build && cd example/runtime && pnpm install | |
- name: check main.js | |
run: | | |
bun run example/runtime/main.js | |
deno run --allow-read example/runtime/main.js | |
node example/runtime/main.js | |
- name: check import.js | |
run: | | |
bun run example/runtime/import.js | |
deno run --allow-read example/runtime/import.js | |
node example/runtime/import.js | |
- name: check require.cjs | |
run: | | |
bun run example/runtime/require.cjs | |
deno run --allow-read example/runtime/require.cjs | |
node example/runtime/require.cjs |