Skip to content

Merge pull request #124 from IgorKowalczyk/renovate/igorkowalczyk-esl… #269

Merge pull request #124 from IgorKowalczyk/renovate/igorkowalczyk-esl…

Merge pull request #124 from IgorKowalczyk/renovate/igorkowalczyk-esl… #269

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