Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
test:
name: Install and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm it