Skip to content

Bump eslint from 8.56.0 to 9.0.0 #89

Bump eslint from 8.56.0 to 9.0.0

Bump eslint from 8.56.0 to 9.0.0 #89

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI (continuous integration)
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches:
- "*"
- "!main"
- "!demo"
pull_request:
branches:
- main
- demo
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
name: Kód és funkció ellenőrzés
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: npm upgrade
- run: npm install
- run: npm run lint:js
- run: npm run lint:ejs
- run: npm run test