Skip to content

Bump ip from 2.0.0 to 2.0.1 #131

Bump ip from 2.0.0 to 2.0.1

Bump ip from 2.0.0 to 2.0.1 #131

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: Install dependencies
run: yarn install
- name: Prettier
run: yarn format
- name: Test
run: yarn test