Skip to content

chore(deps): bump @node-wot/binding-http from 0.8.7 to 0.8.8 #552

chore(deps): bump @node-wot/binding-http from 0.8.7 to 0.8.8

chore(deps): bump @node-wot/binding-http from 0.8.7 to 0.8.8 #552

Workflow file for this run

name: Build Status
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Upgrade NPM
run: npm install -g npm@7
- name: Install dependencies
run: |
git config --global url."https://${{ secrets.PAT }}@github.com/".insteadOf ssh://[email protected]/
npm ci
- name: Perform tests and generate coverage report
run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}