Skip to content

build(deps): Bump ip from 1.1.8 to 1.1.9 #71

build(deps): Bump ip from 1.1.8 to 1.1.9

build(deps): Bump ip from 1.1.8 to 1.1.9 #71

Workflow file for this run

name: Build and Test Library Code
on:
push:
pull_request:
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.14.2
cache: 'yarn'
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Compile
run: yarn compile
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Prettier formatting check
run: yarn prettier:check