Skip to content

Bump eslint-config-protect-me-from-my-stupidity from 10.1.0 to 10.1.1 #289

Bump eslint-config-protect-me-from-my-stupidity from 10.1.0 to 10.1.1

Bump eslint-config-protect-me-from-my-stupidity from 10.1.0 to 10.1.1 #289

Workflow file for this run

name: Build
on:
push:
branches:
- master
paths-ignore:
- '**.md'
- 'LICENSE.txt'
pull_request:
branches:
- master
paths-ignore:
- '**.md'
- 'LICENSE.txt'
jobs:
build-and-test:
strategy:
matrix:
node:
- '18'
- '20'
name: Build & Test on Node v${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run build
runs-on: ubuntu-latest