Update ci.yml #1890
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: | |
redis: | |
image: redis/redis-stack-server:latest | |
ports: | |
- 16379:6379 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
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 | |
- run: | | |
sudo apt-get install traceroute mtr-tiny | |
- uses: fscarmen/[email protected] | |
- name: Test | |
run: | | |
ping -4 -c 4 www.hetzner.com; ping -6 -c 4 www.hetzner.com; ip addr list; sudo traceroute -T www.hetzner.com; sudo traceroute -T -F kolarik.sk; | |
sudo mtr -4 --interval 0.5 --gracetime 3 --max-ttl 30 --timeout 30 -c 10 -C kolarik.sk | |
- 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 |