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

Bump ip from 1.1.5 to 1.1.9 #1049

Bump ip from 1.1.5 to 1.1.9

Bump ip from 1.1.5 to 1.1.9 #1049

Workflow file for this run

name: Assertions
on:
pull_request:
branches: main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
token: ${{ github.token }}
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install Dependencies
run: |
npm i --legacy-peer-deps
cd docs
npm i --legacy-peer-deps
- name: Lint Docs
run: |
cd docs
npm run lint
- name: Lint Frontend
run: |
npm run lint
- name: Run Frontend Tests
run: |
npm run test:jest