Skip to content

Commit

Permalink
fix: remove numbers in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Feb 7, 2025
1 parent 3a16a43 commit 40f73de
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/checkout@v2

# 1. Install and cache dependencies.
# Install and cache dependencies.
- uses: actions/cache@v2
id: yarn-cache
with:
Expand All @@ -41,14 +41,14 @@ jobs:
- name: Install dependencies
run: yarn --immutable

# 2. Run static code analysis.
# Run static code analysis.
- name: Check code formatting
run: yarn prettier:check

- name: ESLint
run: yarn eslint

# 4. Run unit tests.
# Run unit tests.
- name: Run unit tests
run: yarn test:unit

Expand All @@ -73,7 +73,7 @@ jobs:

- uses: actions/checkout@v2

# 1. Install and cache dependencies.
# Install and cache dependencies.
- uses: actions/cache@v2
id: yarn-cache
with:
Expand All @@ -83,15 +83,15 @@ jobs:
- name: Install dependencies
run: yarn --immutable

# 3. Deploy to a short-lived environment (will be destroyed once the PR is closed).
# Deploy to a short-lived environment (will be destroyed once the PR is closed).
- name: Deploy
run: yarn webiny deploy --env pr${{ github.event.pull_request.number }}

# 4. Run integration tests.
# Run integration tests.
- name: Run integration tests
run: yarn test:integration

# 5. Run end-to-end tests.
# Run end-to-end tests.
- name: Run end-to-end tests
run: yarn test:e2e

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- uses: actions/checkout@v2

# 1. Install and cache dependencies.
# Install and cache dependencies.
- uses: actions/cache@v2
id: yarn-cache
with:
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Install dependencies
run: yarn --immutable

# 2. Destroy short-lived environment.
# Destroy short-lived environment.
- name: Destroy Website project application
run: yarn webiny destroy apps/website --env pr${{ github.event.pull_request.number }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- uses: actions/checkout@v2

# 1. Install and cache dependencies.
# Install and cache dependencies.
- uses: actions/cache@v2
id: yarn-cache
with:
Expand All @@ -53,25 +53,25 @@ jobs:
- name: Install dependencies
run: yarn --immutable

# 2. Run static code analysis.
# Run static code analysis.
- name: Check code formatting
run: yarn prettier:check

- name: ESLint
run: yarn eslint

# 4. Run unit tests.
# Run unit tests.
- name: Run unit tests
run: yarn test:unit

- name: Deploy
run: yarn webiny deploy --env dev

# 6. Run integration tests.
# Run integration tests.
- name: Run integration tests
run: yarn test:integration

# 7. Run end-to-end tests.
# Run end-to-end tests.
- name: Run end-to-end tests
run: yarn test:e2e

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- uses: actions/checkout@v2

# 1. Install and cache dependencies.
# Install and cache dependencies.
- uses: actions/cache@v2
id: yarn-cache
with:
Expand All @@ -53,25 +53,25 @@ jobs:
- name: Install dependencies
run: yarn --immutable

# 2. Run static code analysis.
# Run static code analysis.
- name: Check code formatting
run: yarn prettier:check

- name: ESLint
run: yarn eslint

# 4. Run unit tests.
# Run unit tests.
- name: Run unit tests
run: yarn test:unit

- name: Deploy
run: yarn webiny deploy --env prod

# 6. Run integration tests.
# Run integration tests.
- name: Run integration tests
run: yarn test:integration

# 7. Run end-to-end tests.
# Run end-to-end tests.
- name: Run end-to-end tests
run: yarn test:e2e

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- uses: actions/checkout@v2

# 1. Install and cache dependencies.
# Install and cache dependencies.
- uses: actions/cache@v2
id: yarn-cache
with:
Expand All @@ -53,25 +53,25 @@ jobs:
- name: Install dependencies
run: yarn --immutable

# 2. Run static code analysis.
# Run static code analysis.
- name: Check code formatting
run: yarn prettier:check

- name: ESLint
run: yarn eslint

# 4. Run unit tests.
# Run unit tests.
- name: Run unit tests
run: yarn test:unit

- name: Deploy
run: yarn webiny deploy --env staging

# 6. Run integration tests.
# Run integration tests.
- name: Run integration tests
run: yarn test:integration

# 7. Run end-to-end tests.
# Run end-to-end tests.
- name: Run end-to-end tests
run: yarn test:e2e

Expand Down

0 comments on commit 40f73de

Please sign in to comment.