Skip to content

Update dependency @igorkowalczyk/prettier-config to v1.4.1 #266

Update dependency @igorkowalczyk/prettier-config to v1.4.1

Update dependency @igorkowalczyk/prettier-config to v1.4.1 #266

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