Skip to content

chore: fix typo

chore: fix typo #44

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
name: CI - node ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v4
- name: set node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm test
run: npm test