Skip to content

Commit

Permalink
🔧 chore(webpack.yml): refactor workflow to separate install and build…
Browse files Browse the repository at this point in the history
… steps for better readability and maintainability
  • Loading branch information
alisaitteke committed Dec 21, 2023
1 parent 32f3479 commit 6232f71
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ jobs:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- name: Run install
uses: borales/actions-yarn@v4
with:
node-version: ${{ matrix.node-version }}
cmd:
install
build
cmd: install
- name: Build production bundle
uses: borales/actions-yarn@v4
with:
cmd: build

0 comments on commit 6232f71

Please sign in to comment.