Skip to content

Bump version to "v16.1.7" with changelog. #628

Bump version to "v16.1.7" with changelog.

Bump version to "v16.1.7" with changelog. #628

Workflow file for this run

name: lint
on:
pull_request:
# Declare default permissions as read only.
permissions:
contents: read
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
with:
node-version-file: '.nvmrc'
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Setup ESLint Caching
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
with:
path: .eslintcache
key: ${{ runner.os }}-${{ hashFiles('.eslintrc.json') }}-1
- name: Run ESLint
run: yarn lint --cache-strategy content