Skip to content

Add an intialIndex prop (#35) #87

Add an intialIndex prop (#35)

Add an intialIndex prop (#35) #87

Workflow file for this run

name: Quality
on: push
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup node
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn
- name: Build react-native-swipeable-card-stack
run: yarn build
- name: Test formatting
run: yarn test:format
- name: Test linting
run: yarn test:lint
- name: Run unit tests
run: yarn test:jest