Run test server from Playwright and misc config changes #623
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: Run tests | |
on: | |
push: | |
branches-ignore: | |
- update-docs | |
jobs: | |
format: | |
name: Format | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm ci | |
- name: Check format | |
run: npm run format:check | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm run install:all | |
- name: Lint client | |
if: success() || failure() | |
run: npm run lint | |
working-directory: web | |
- name: Lint server | |
if: success() || failure() | |
run: npm run lint | |
working-directory: server | |
test-server: | |
name: Server tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: server | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm ci | |
- name: Run unit tests | |
run: npm test | |
test-e2e: | |
name: E2E tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Create empty .env file | |
run: touch .env.development | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm ci | |
working-directory: testing/e2e | |
- name: Install Playwright browsers | |
run: npx playwright install --with-deps | |
working-directory: testing/e2e | |
- name: Run E2E tests | |
env: | |
CI: true | |
run: npm run test:e2e | |
- name: Upload test report | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: testing/e2e/playwright-report/ | |
- name: Upload test results on failure | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: test-results | |
path: testing/e2e/test-results/ |