Skip to content

feat: add enforce-slot-jsdoc rule #132

feat: add enforce-slot-jsdoc rule

feat: add enforce-slot-jsdoc rule #132

Workflow file for this run

name: Build & Test
on:
push:
branches:
- 'main'
pull_request:
branches:
- '**'
jobs:
build_and_test:
strategy:
matrix:
node: ['16', '18', '20']
os: ['ubuntu-latest', 'windows-latest']
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test jest
run: npm run test