Skip to content

changed: updated dependencies #93

changed: updated dependencies

changed: updated dependencies #93

Workflow file for this run

name: ci
on:
push:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16', '18', '20' ]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: cache
with:
path: node_modules
key: ${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org/
- if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- run: npm test