Skip to content

Add codemod to convert input selectors passed as separate inline arguments to a single array #18

Add codemod to convert input selectors passed as separate inline arguments to a single array

Add codemod to convert input selectors passed as separate inline arguments to a single array #18

name: Test Reselect Codemods
on: [push, pull_request, workflow_dispatch]
defaults:
run:
working-directory: codemods
jobs:
test:
name: Run test Suite
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [18, 20, latest]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache-dependency-path: ./codemods
cache: 'yarn'
- name: Check folder contents
run: ls -l .
- name: Install dependencies
run: yarn install
- name: Run test suite
run: yarn test