-
Notifications
You must be signed in to change notification settings - Fork 21
36 lines (36 loc) · 1017 Bytes
/
e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: E2E tests
on:
push:
branches:
- "main"
pull_request:
jobs:
start:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "yarn"
- name: Cache playwright dependencies
id: cache-playwright
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/yarn.lock') }}
- name: Start docker-compose
run: docker-compose up -d
- name: Install dependencies
run: yarn install
- name: Install playwright dependencies
if: steps.cache-playwright.outputs.cache-hit != 'true'
run: npx playwright install --with-deps
- name: Build packages
run: yarn build:example
- name: Fill database
run: yarn database
- name: Start server
run: yarn start:example &
- name: Run tests
run: yarn turbo test:e2e