Skip to content

Merge branch 'main' of https://github.com/timendum/freshportal #9

Merge branch 'main' of https://github.com/timendum/freshportal

Merge branch 'main' of https://github.com/timendum/freshportal #9

Workflow file for this run

name: NodeJS Linting
on:
# Runs on pushes targeting the default branch
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint