Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Bump ip from 1.1.5 to 1.1.9 #497

Bump ip from 1.1.5 to 1.1.9

Bump ip from 1.1.5 to 1.1.9 #497

Workflow file for this run

name: Build Status
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: |
yarn
- name: Lint
run: |
yarn lint
- name: Build
run: |
yarn build
- name: Test
run: |
yarn test