Skip to content

Commit

Permalink
chore: update CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danishjoseph committed Jul 16, 2024
1 parent 457e65a commit f5ff9fb
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,6 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'

- name: Cache Yarn dependencies
uses: actions/cache@v3
with:
path: |
**/node_modules
.yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install test dependencies
run: yarn install --production=false --only=dev

Expand All @@ -59,6 +49,10 @@ jobs:

- name: Install test dependencies
run: yarn install --production=false --only=dev

- name: Get version number
id: version
run: echo "VERSION=$(cat ./package.json | jq -r '.version')" >> $GITHUB_ENV

- name: Build Docker image
run: |
Expand Down

0 comments on commit f5ff9fb

Please sign in to comment.