Skip to content

Fix typo in v7 upgrade guide #1398

Fix typo in v7 upgrade guide

Fix typo in v7 upgrade guide #1398

Workflow file for this run

name: JS lint
on: [push, pull_request]
jobs:
lint:
name: JS Lint
strategy:
matrix:
os: [ubuntu-latest]
node: [14.x, 16.x, 18.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile --non-interactive --prefer-offline
- name: Lint
run: yarn lint