Skip to content

Bump follow-redirects from 1.15.0 to 1.15.9 #2

Bump follow-redirects from 1.15.0 to 1.15.9

Bump follow-redirects from 1.15.0 to 1.15.9 #2

Workflow file for this run

name: Linting
on: [push]
jobs:
eslint:
runs-on: SalesforceFoundation-ubuntu
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v4
with:
node-version: '14'
- name: Determine Node Version
id: node-version
run: |
echo "::set-output name=ver::$(node --version)"
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-${{ steps.node-version.outputs.ver }}-${{ hashFiles('package.json', 'yarn.lock') }}
- name: Install Packages
run: |
yarn install
- name: eslint
run: |
npx eslint "**/*.js" --no-error-on-unmatched-pattern