Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Update dependency @igorkowalczyk/eslint-config to v1.4.2 #228

Update dependency @igorkowalczyk/eslint-config to v1.4.2

Update dependency @igorkowalczyk/eslint-config to v1.4.2 #228

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ["javascript"]
node: ["18.x"]
steps:
- name: 🧱 Checkout repository
uses: actions/checkout@v3
- name: 🔩 Setup PNPM
uses: pnpm/action-setup@v2
with:
version: latest
- name: 🔩 Setup Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: 🚀 Install dependencies
run: pnpm install
- name: 🚀 Run ESLint
run: pnpm lint