Skip to content

Commit

Permalink
13 Updated ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
vladokuskov committed May 4, 2024
1 parent fa64137 commit 1bb1db9
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ on:
pull_request:

jobs:
inspection:
name: Run inspection 🧪
runs-on: ubuntu-latest

steps:
- name: Checkout repository 🔎
uses: actions/checkout@v3

- name: Install dependencies 📦
run: yarn install

- name: Lint code ✍️️
run: yarn lint️

- name: Run tests ✅
run: yarn test

build:
name: Build image 🛠
runs-on: ubuntu-latest
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ on:
workflow_dispatch:

jobs:
inspection:
name: Run inspection 🧪
runs-on: ubuntu-latest

steps:
- name: Checkout repository 🔎
uses: actions/checkout@v3

- name: Install dependencies 📦
run: yarn install

- name: Lint code ✍️️
run: yarn lint️

- name: Run tests ✅
run: yarn test

build:
name: Build and publish image 🛠️
runs-on: ubuntu-latest
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ on:
workflow_dispatch:

jobs:
inspection:
name: Run inspection 🧪
runs-on: ubuntu-latest

steps:
- name: Checkout repository 🔎
uses: actions/checkout@v3

- name: Install dependencies 📦
run: yarn install

- name: Lint code ✍️️
run: yarn lint️

- name: Run tests ✅
run: yarn test

build:
name: Build and publish image 🛠️
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1bb1db9

Please sign in to comment.