Skip to content

Merge pull request #171 from codelicia/renovate/diff-7.x #352

Merge pull request #171 from codelicia/renovate/diff-7.x

Merge pull request #171 from codelicia/renovate/diff-7.x #352

Workflow file for this run

name: Continous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 19.x]
steps:
- uses: actions/checkout@v4
- name: Node Setup
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: test
run: npm test
- name: lint
run: npm run lint