Skip to content

0.7.1

0.7.1 #63

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: npm install
run: npm install && ./node_modules/.bin/npr which standard
- name: npm test
run: npm test
env:
CI: true