Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Added Group fixed issue 190 #25

Added Group fixed issue 190

Added Group fixed issue 190 #25

Workflow file for this run

name: eslint
on:
push:
branches:
- main
paths:
- 'application/**'
pull_request:
branches:
- main
paths:
- 'application/**'
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.1
- name: Setup Node.js environment
uses: actions/setup-node@v4.0.4
with:
node-version: "20"
- name: Install dependencies
working-directory: ./application
run: npm install
- name: Run eslint
working-directory: ./application
run: npm run lint