Skip to content

Breaking: Turn rule config into array #6

Breaking: Turn rule config into array

Breaking: Turn rule config into array #6

Workflow file for this run

name: Test
on:
push:
pull_request:
env:
FORCE_COLOR: 2
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18
- 16
- 14
name: Node.js ${{ matrix.node-version }}
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Run unit tests
run: npm test