Skip to content

Commit

Permalink
chore: Update deployment workflows to specify working directories for…
Browse files Browse the repository at this point in the history
… npm cache and build commands
  • Loading branch information
HlexNC authored Jun 12, 2024
1 parent 0be4a5b commit 618416d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 47 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
# working-directory: ./client

- name: Install dependencies and build client
run: |
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/deploy-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
# working-directory: ./server

- name: Install dependencies and build server
run: |
Expand Down
41 changes: 0 additions & 41 deletions .github/workflows/test.yaml

This file was deleted.

0 comments on commit 618416d

Please sign in to comment.