Skip to content

Bump ip from 1.1.5 to 1.1.9 #348

Bump ip from 1.1.5 to 1.1.9

Bump ip from 1.1.5 to 1.1.9 #348

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test