Skip to content

v3.5.0

v3.5.0 #188

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@v4
- name: Setup node ${{ matrix.node-version }} in ${{ runner.OS }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v4
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