Skip to content

24.2.3

24.2.3 #2468

Workflow file for this run

name: Lint tests
on: [push, pull_request]
jobs:
lint-test:
strategy:
fail-fast: true
runs-on: ubuntu-latest
name: Lint
timeout-minutes: 20
steps:
- name: Get sources
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Run npm install
run: npm install --no-package-lock --no-audit --no-fund
- name: Run tests
run: npm run lint