Skip to content

chore: GitHub Action cleanup & run tests on valkey #2

chore: GitHub Action cleanup & run tests on valkey

chore: GitHub Action cleanup & run tests on valkey #2

Workflow file for this run

on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test-redis:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: [18.x, 20.x, 22.x]
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: latest
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test:tsd
- run: npm run test:cov || npm run test:cov || npm run test:cov
test-cluster:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build and test cluster
run: bash test/cluster/docker/main.sh
test-valkey:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: [18.x, 20.x, 22.x]
services:
valkey:
image: valkey/valkey:latest
ports:
# Opens tcp port 6379 on the host and service container
- 6379:6379
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test:tsd
- run: npm run test:cov || npm run test:cov || npm run test:cov
code-coverage:
needs: test

Check failure on line 75 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 75, Col: 12): Job 'code-coverage' depends on unknown job 'test'.
runs-on: ubuntu-latest
steps:
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true