Skip to content

Update all the lint/format tools #51

Update all the lint/format tools

Update all the lint/format tools #51

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches:
- main
jobs:
ci:
name: Test + Lint with node@${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "16.x"
- "18.x"
- "20.x"
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm run lint
- run: npm test