Skip to content

fix(reserved-member-names): improve reserved member check by using `H… #130

fix(reserved-member-names): improve reserved member check by using `H…

fix(reserved-member-names): improve reserved member check by using `H… #130

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