Skip to content

Bump cborg from 4.5.8 to 5.0.1 #210

Bump cborg from 4.5.8 to 5.0.1

Bump cborg from 4.5.8 to 5.0.1 #210

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 5
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build
run: |
npm i
npm run build --if-present
env:
CI: true
- name: Run tests
run: |
npm run lint
npm run test:ci