Skip to content

Change Support Status to Archived #222

Change Support Status to Archived

Change Support Status to Archived #222

Workflow file for this run

name: eslint
on: [pull_request]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Setup npm cache
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
env:
CI: true
- name: Run Eslint
uses: bradennapier/[email protected]