Skip to content

chore: update actions #48

chore: update actions

chore: update actions #48

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
env:
NODE_VERSION: 20.x
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run eslint