Skip to content

Updated Action workflow #9

Updated Action workflow

Updated Action workflow #9

Workflow file for this run

name: Testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Running basic tests
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: ['18.x']
services:
manticoresearch-manticore:
image: manticoresearch/manticore:dev
env:
EXTRA: 1
ports:
- 9408:9308
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: |
sleep 1m
npm install
npm test