Skip to content

build(deps-dev): bump ip from 1.1.8 to 1.1.9 #173

build(deps-dev): bump ip from 1.1.8 to 1.1.9

build(deps-dev): bump ip from 1.1.8 to 1.1.9 #173

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
- develop**
pull_request:
branches:
- main
- develop**
workflow_dispatch: # execute manualy
branches: [main, develop]
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['14']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: npm install, build and test
# update npm version to allow use package-lock.json version 2
run: |
npm install -g npm
npm install
npm run build --if-present
npm test