perf: use a redis cluster #2047
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
build: | |
name: Run tests | |
runs-on: ubuntu-latest | |
env: | |
NODE_ENV: test | |
services: | |
mariadb: | |
image: mariadb:10.11.5 | |
ports: | |
- 13306:3306 | |
env: | |
MARIADB_DATABASE: dashboard-globalping-test | |
MARIADB_USER: directus | |
MARIADB_PASSWORD: password | |
MARIADB_RANDOM_ROOT_PASSWORD: 1 | |
options: >- | |
--health-cmd "mysqladmin ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Set up Redis | |
run: | | |
echo $PWD | |
cp config/redis/.env.redis ../../ | |
ls -la ../../ | |
docker compose --env-file .env.redis up -d | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
- name: Test Unit, Integration, Contract | |
run: | | |
npm run lint | |
npm run coverage | |
npm run test:portman | |
- name: Test Dist | |
run: | | |
rm -rf node_modules | |
npm ci --omit=dev | |
npm run test:dist |