Skip to content

Bump hosted-git-info from 2.7.1 to 2.8.9 (#139) #161

Bump hosted-git-info from 2.7.1 to 2.8.9 (#139)

Bump hosted-git-info from 2.7.1 to 2.8.9 (#139) #161

Workflow file for this run

name: ESLint check
on:
push:
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Setup node ${{ matrix.node-version }} in ${{ runner.OS }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.OS }}-${{ matrix.node-version }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-${{ matrix.node-version }}-node-
${{ runner.OS }}-${{ matrix.node-version }}-
${{ runner.OS }}-
- name: Install node modules
run: |
npm install
npm run lerna-bootstrap
- run: npm run lint