mirror of
https://github.com/directus/directus.git
synced 2026-01-31 12:48:23 -05:00
* Refactor e2e tests * Only install root dependencies for lint step * Fix dumbest error ever * Pass process.env too to spawned subprocess * Suppress npm package installation prompt * Improve error handling * Add new compose file for tests * Avoid port conflict with remoted * Update docker-compose.yml * Add test docs * Use current branch workflow files and simplify skips * Fix workflow file * Fix workflow file * Try adding `.yml` extension to allow reference in `uses` * Place workflow file in folders to allow reference in `uses` * Requires more work than expected, reverting * Update docs to use correct compose file * Remove comment / unused code * Run tests from main Co-authored-by: ian <licitdev@gmail.com> Co-authored-by: Jay Cammarano <jay.cammarano@gmail.com> Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
name: End-to-End Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
if: inputs.should_skip != 'true'
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node-version:
|
|
- '16'
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Start databases containers
|
|
run: docker compose -f tests/docker-compose.yml up -d --quiet-pull
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: npm
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build packages
|
|
run: npm run build
|
|
|
|
- name: Wait for databases to be ready
|
|
run: docker compose -f tests/docker-compose.yml up -d --quiet-pull --no-recreate --wait
|
|
|
|
- name: Run tests
|
|
run: npm run test:e2e
|
|
|
|
result:
|
|
name: Result
|
|
if: inputs.should_skip != 'true' && always()
|
|
runs-on: ubuntu-latest
|
|
needs: test
|
|
steps:
|
|
- name: Mark result as failed
|
|
if: needs.test.result != 'success'
|
|
run: exit 1
|