Skip to content

build(deps): bump @feathersjs/commons from 5.0.1 to 5.0.13 #225

build(deps): bump @feathersjs/commons from 5.0.1 to 5.0.13

build(deps): bump @feathersjs/commons from 5.0.1 to 5.0.13 #225

Workflow file for this run

name: CI
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
solr:
image: solr:9
ports:
- 8983:8983
options: >-
--health-cmd "curl --fail http://0.0.0.0:8983/solr/admin/cores || exit 1"
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
matrix:
node-version: [18.x]
steps:
- name: Copy configsets
run: docker exec $(docker ps -q --filter ancestor=solr:9) cp -rf /opt/solr/server/solr/configsets /var/solr/data/configsets
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run coverage
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@v1