Bump eslint from 9.23.0 to 9.36.0 #165
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CI - folyamatos integráció | |
name: CI (continuous integration) | |
# Mikor fut? | |
on: | |
# Összefűzési kérés indítása az alábbi branch-ekre | |
pull_request_target: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled, edited] | |
branches: | |
- main | |
- demo | |
# Feladatok | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Kód és funkció ellenőrzés | |
steps: | |
- name: Kód letöltés | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Node.js beállítás | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "22.x" | |
- name: Node - Csomagkezelő frissítés | |
run: npm upgrade | |
- name: Node - Függőségek telepítése | |
run: npm install | |
- name: Node - 'js' fájlok ellenőrzése | |
run: npm run lint:js | |
- name: Node - 'ejs' fájlok ellenőrzése | |
run: npm run lint:ejs | |
- name: Node - 'html' kód ellenőrzése | |
run: npm run lint:html | |
- name: Node - Funkcionális tesztek | |
run: npm run test |