-
-
Notifications
You must be signed in to change notification settings - Fork 754
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Add BDD UI tests using Playwright (#911)
- Loading branch information
Showing
17 changed files
with
1,259 additions
and
119 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: Build and test | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
setup: | ||
runs-on: ubuntu-latest | ||
env: | ||
POSTGRES_DB: planka_db | ||
POSTGRES_USER: user | ||
POSTGRES_PASSWORD: password | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: 'npm' | ||
|
||
- name: Setup PostgreSQL | ||
uses: ikalnytskyi/action-setup-postgres@v5 | ||
with: | ||
database: ${{ env.POSTGRES_DB }} | ||
username: ${{ env.POSTGRES_USER }} | ||
password: ${{ env.POSTGRES_PASSWORD }} | ||
|
||
- name: Cache Node.js modules | ||
uses: actions/cache@v3 | ||
with: | ||
path: client/node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('client/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
- name: Install dependencies | ||
run: | | ||
npm install | ||
cd client | ||
npm run build | ||
- name: Setup server | ||
env: | ||
DEFAULT_ADMIN_EMAIL: [email protected] | ||
DEFAULT_ADMIN_PASSWORD: demo | ||
DEFAULT_ADMIN_NAME: Demo Demo | ||
DEFAULT_ADMIN_USERNAME: demo | ||
run: | | ||
client/tests/setup-symlinks.sh | ||
cd server | ||
cp .env.sample .env | ||
sed -i "s|^DATABASE_URL=.*|DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost/${POSTGRES_DB}|" .env | ||
npm run db:init | ||
npm start --prod & | ||
- name: Wait for development server | ||
run: | | ||
sudo apt-get install wait-for-it -y | ||
wait-for-it -h localhost -p 1337 -t 10 | ||
- name: Run UI tests | ||
run: | | ||
cd client | ||
npm install | ||
npx playwright install chromium | ||
npm run test:acceptance tests |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.