test: specify resolver in e2e dns tests #2
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: e2e tests | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
env: | |
NODE_ENV: test | |
services: | |
redis: | |
image: redis/redis-stack-server:latest | |
ports: | |
- 6379:6379 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
mariadb: | |
image: mariadb:10.11.5 | |
ports: | |
- 3306:3306 | |
env: | |
MARIADB_DATABASE: directus-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@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
- name: Test E2E | |
run: | | |
npm run test:e2e |