Skip to content

🆙 update Node and actions #47

🆙 update Node and actions

🆙 update Node and actions #47

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install NPM packages
run: npm ci
- name: Run Lint
run: npm run lint