Skip to content

Bump ip from 2.0.0 to 2.0.1 (#55) #146

Bump ip from 2.0.0 to 2.0.1 (#55)

Bump ip from 2.0.0 to 2.0.1 (#55) #146

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os:
- macos
- windows
- ubuntu
node-version:
- '16.x'
name: build
runs-on: ${{ matrix.os }}-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install dependencies
run: npm ci
- name: run build
run: npm run build
- name: run lint
run: npm run lint
- name: run test
run: npm run test
- name: upload coverage reports to codecov
uses: codecov/codecov-action@v3