Skip to content

chore(deps): bump ip from 1.1.8 to 1.1.9 #205

chore(deps): bump ip from 1.1.8 to 1.1.9

chore(deps): bump ip from 1.1.8 to 1.1.9 #205

Workflow file for this run

name: Check Codebase
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
cache: "yarn"
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint, Build & Test
run: yarn ci