Skip to content

Merge pull request #26 from timendum/dependabot/npm_and_yarn/rollup-4… #17

Merge pull request #26 from timendum/dependabot/npm_and_yarn/rollup-4…

Merge pull request #26 from timendum/dependabot/npm_and_yarn/rollup-4… #17

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