Skip to content

Bump standard from 17.1.0 to 17.1.2 #26

Bump standard from 17.1.0 to 17.1.2

Bump standard from 17.1.0 to 17.1.2 #26

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 18.x
- 16.x
- 14.x
- 12.x
os:
- ubuntu-20.04
- windows-2019
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Lint
run: npm run lint