Skip to content

Merge pull request #56 from dylon/dylon/issue-55 #73

Merge pull request #56 from dylon/dylon/issue-55

Merge pull request #56 from dylon/dylon/issue-55 #73

Workflow file for this run

name: Lint Sources
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
# node-version: ['23.x', 'latest']
node-version: ['23.x']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint