Skip to content

Update eslint-stylistic monorepo to v2.11.0 #663

Update eslint-stylistic monorepo to v2.11.0

Update eslint-stylistic monorepo to v2.11.0 #663

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint (show only errors)
run: pnpm lint --quiet
working-directory: ./
- name: Unit tests without Snapshots
run: pnpm test:unit
- name: Build
run: pnpm build
working-directory: ./