Skip to content

chore(deps-dev): bump node-red from 3.0.2 to 3.1.0 #488

chore(deps-dev): bump node-red from 3.0.2 to 3.1.0

chore(deps-dev): bump node-red from 3.0.2 to 3.1.0 #488

Workflow file for this run

name: StandardJS Linter
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
branches: [ main ]
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
# Caches NPM and the node_modules folder for faster builds
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Use linter
run: npm run lint