Skip to content

chore(deps-dev): bump eslint-config-love from 71.0.0 to 83.0.0 #51

chore(deps-dev): bump eslint-config-love from 71.0.0 to 83.0.0

chore(deps-dev): bump eslint-config-love from 71.0.0 to 83.0.0 #51

Workflow file for this run

name: Pull Request Check
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Installing dependencies ⚒️
run: npm install
- name: Running Tests 🧪
run: npm run test
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Installing dependencies ⚒️
run: npm install
- name: Checking code quality 🤔
run: npm run lint