Skip to content

Commit

Permalink
ticket-1577 IMA Agent moved into it's own repository
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiy-skalelabs committed Oct 12, 2023
1 parent 92432cc commit 9dda166
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,27 +28,27 @@ jobs:
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install PYTHON
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.8

- name: Install NODE JS
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18

- name: Install project
working-directory: ${{env.working-directory}}
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

defaults:
run:
working-directory: proxy
working-directory: proxy

steps:
- uses: actions/checkout@v2
Expand All @@ -105,27 +105,27 @@ jobs:
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install PYTHON
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.8

- name: Install NODE JS
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18

- name: Install project
run: |
Expand Down

0 comments on commit 9dda166

Please sign in to comment.