Skip to content

Bump lru-cache from 7.18.3 to 9.1.2 #69

Bump lru-cache from 7.18.3 to 9.1.2

Bump lru-cache from 7.18.3 to 9.1.2 #69

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: Node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm i
- name: npm run build
run: npm run build
- name: npm test
run: npm test