Skip to content

Bump follow-redirects from 1.15.3 to 1.15.4 in /demo #17

Bump follow-redirects from 1.15.3 to 1.15.4 in /demo

Bump follow-redirects from 1.15.3 to 1.15.4 in /demo #17

Workflow file for this run

name: formik-otp-input CI 💎
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
setup:
name: "Setup: Installing dependencies 🛒"
runs-on: ubuntu-latest
steps:
- name: Checkout Code 🛒
uses: actions/checkout@v2
- name: Install Node.js 📦
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install Dependencies 🧹
run: yarn install
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
lint:
name: "Linting: Running eslint against application 🧹"
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout Code 🛒
uses: actions/checkout@v2
- name: Restore Cache
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Run Linter 🛀🏻
run: yarn run lint