Skip to content

Add default array value to custom sort order option #32

Add default array value to custom sort order option

Add default array value to custom sort order option #32

Workflow file for this run

name: Node.js CI
permissions: {}
on: pull_request
jobs:
main:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Use dependencies cache
uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci --ignore-scripts --no-audit --no-fund
- run: npm run test
- run: npm run lint