Skip to content

Replace dependency eslint-plugin-node with eslint-plugin-n 14.0.0 #4796

Replace dependency eslint-plugin-node with eslint-plugin-n 14.0.0

Replace dependency eslint-plugin-node with eslint-plugin-n 14.0.0 #4796

name: test-javascript
on:
pull_request:
branches:
- main
workflow_call:
push:
branches:
- main
- renovate/**
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node-version: ['18.x', '20.x']
include:
- os: windows-latest
node-version: '20.x'
- os: macos-latest
node-version: '20.x'
- os: windows-latest
node-version: '20.x'
- os: macos-latest
node-version: '20.x'
steps:
- name: set git core.autocrlf to 'input'
run: git config --global core.autocrlf input
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: with Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run build
- name: npm test
uses: GabrielBB/xvfb-action@v1
with:
run: npm run test
- run: npm run eslint