v1.1.2 #52
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: tests | |
on: [push, pull_request] | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Environment (Using NodeJS 22.x) | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 22.x | |
- name: Install dependencies | |
run: npm install | |
- name: Linting | |
run: npx standard | |
- name: Install OpenSSL | |
run: sudo apt-get update && sudo apt-get install openssl | |
- name: Run tests | |
run: mkdir -p keys && npm run test |