Skip to content

Commit ad72d85

Browse files
authored
Merge pull request #4 from destrutoyt/dev
Docker integration. Version updated in package.json
2 parents c41510e + 3d133e1 commit ad72d85

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

.dockerignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules/
2+
test-results/
3+
playwright-report/
4+
blob-report/
5+
playwright/.cache/
6+
allure-results/
7+
allure-report/
8+
.git/
9+
.github

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:18-bullseye
2+
3+
WORKDIR /app
4+
5+
COPY package*.json ./
6+
RUN npm install
7+
RUN npx playwright install --with-deps
8+
9+
COPY . .
10+
11+
RUN ["npm", "run", "test"]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qa-automation-automationexercise",
3-
"version": "1.1",
3+
"version": "2.2",
44
"description": "QA automation project showcasing UI, API, and visual tests for AutomationExercise. Integrated with Docker, Allure, and CI/CD pipelines.",
55
"main": "index.js",
66
"directories": {

0 commit comments

Comments
 (0)