Skip to content

docs: use specific 5.2 version in breaking changes section #43

docs: use specific 5.2 version in breaking changes section

docs: use specific 5.2 version in breaking changes section #43

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Environment (Using NodeJS 16.x)
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install dependencies
run: npm install
- name: Linting
run: npx standard
- name: Run tests
run: npm run test