Files
solidtime/.github/workflows/npm-lint.yml
2024-03-22 11:41:51 +01:00

20 lines
301 B
YAML

name: NPM Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm run lint