build(deps-dev): bump ip from 1.1.8 to 1.1.9 #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |