Skip to content

Lint fixes

Lint fixes #35

Workflow file for this run

name: "CI"
on:
push:
paths-ignore:
- 'README.md'
jobs:
ci:
name: Test, Build, and Deploy
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
services:
redis:
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps port 6379 on service container to the host
- 6379:6379
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Lint project
run: npm run lint
- name: Run tests
run: npm test