Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Use npm ci instead of npm install in linting workflow #116

Use npm ci instead of npm install in linting workflow

Use npm ci instead of npm install in linting workflow #116

Workflow file for this run

name: Linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run lint