Skip to content

chore(deps): configure Renovate #115

chore(deps): configure Renovate

chore(deps): configure Renovate #115

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
timeout-minutes: 20
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Prepare git
run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v2
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Lint JS, JSON and Markdown files
run: npm run lint