Skip to content

Bump ip from 1.1.8 to 1.1.9 #29

Bump ip from 1.1.8 to 1.1.9

Bump ip from 1.1.8 to 1.1.9 #29

Workflow file for this run

name: PR Quality Checks
on:
pull_request:
branches:
- master
push:
branches:
- master
workflow_dispatch:
jobs:
lintify:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Use Node.js 📗
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: Lintify Code 🚨
run: |
npm i
npm run lint:check
prettify:
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
- name: Use Node.js 📗
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: Prettier Check 💅
run: |
npm i
npm run prettier:check