[CHANGE] [NPM] min version of node is now 18, shims for atob/btoa and… #117
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: nkeys.js | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- '*' | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
name: ${{ matrix.config.kind }} ${{ matrix.config.os }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
deno-version: [1.44.0] | |
node-version: [22.x] | |
steps: | |
- name: checkout nkeys | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use Deno Version ${{ matrix.deno-version }} | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: ${{ matrix.deno-version }} | |
- run: npm ci | |
- run: npm test |