Skip to content

Commit

Permalink
chore: add pipeline tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ceelsoin committed Feb 9, 2024
1 parent 061939a commit efad7f4
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Run Tests

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis:latest
ports:
- 6379:6379
options: --name redis-test
steps:
- name: Use Node.js 8.x
uses: actions/setup-node@v2
with:
node-version: '8.x'
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Setup
run: |
make setup
- name: Lint
run: |
make lint
- name: Unit & Integration Tests
env:
REDIS_ENDPOINT: "localhost:${{ job.services.redis.ports['6379'] }}"
run: |
REDIS_ENDPOINT=${REDIS_ENDPOINT} make test

0 comments on commit efad7f4

Please sign in to comment.