Skip to content

chore(dev-deps): bump @types/node from 16.18.12 to 16.18.31 #38

chore(dev-deps): bump @types/node from 16.18.12 to 16.18.31

chore(dev-deps): bump @types/node from 16.18.12 to 16.18.31 #38

Workflow file for this run

name: Pull Request
on: [ pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x, 18.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Update NPM
run: npm i -g npm
- name: Install Lib Dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Run tests
run: npm test
- name: Get Coverage Info
run: npm run coverage