Skip to content

docs(readme): fix typo and use const instead of ver in example code #11

docs(readme): fix typo and use const instead of ver in example code

docs(readme): fix typo and use const instead of ver in example code #11

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [12, 13, 14, 16, 18]
name: Test
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
name: Use Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Test
run: npm run test