Skip to content

Commit

Permalink
[*] Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
acdemeg committed Mar 3, 2024
1 parent 5093d63 commit 91ce4a9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@ jobs:
- uses: actions/checkout@v4

- name: Set Node.js 16.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
cache: 'yarn'

- name: Yarn install
uses: Borales/actions-yarn@v5.0.0
with:
cmd: install

- name: Yarn build
uses: borales/actions-yarn@v4
uses: Borales/actions-yarn@v5.0.0
with:
cmd: build
10 changes: 8 additions & 2 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,18 @@ jobs:
- uses: actions/checkout@v4

- name: Set Node.js 16.x
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
cache: 'yarn'

- name: Yarn install
uses: Borales/actions-yarn@v5.0.0
with:
cmd: install

- name: Yarn build
uses: borales/actions-yarn@v4
uses: Borales/actions-yarn@v5.0.0
with:
cmd: build

Expand Down

0 comments on commit 91ce4a9

Please sign in to comment.