Skip to content

Commit

Permalink
Providing a directory for each step
Browse files Browse the repository at this point in the history
  • Loading branch information
ATNoblis committed Jun 4, 2024
1 parent 1640957 commit 3149eab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ jobs:
build:
name: UI
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: '20.x'

- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
working-directory: ui
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # not sure if needed....
- name: Run Linting and fixing
uses: borales/actions-yarn@v4
with:
cmd: fix:js
working-directory: ui
- name: Build dev bundle
uses: borales/actions-yarn@v4
with:
cmd: build:dev # will run `yarn build:dev` command
working-directory: ui

0 comments on commit 3149eab

Please sign in to comment.