Skip to content

Commit

Permalink
use npm instead yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
SerhiiTsybulskyi committed Mar 25, 2024
1 parent 26eaf0c commit df227dc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: "18"
cache: "yarn"
cache: 'npm'

- name: Install
run: yarn install --frozen-lockfile --non-interactive
run: npm install

- name: Build App
run: yarn build
run: npm run build
env:
NODE_OPTIONS: --max_old_space_size=16384

Expand Down Expand Up @@ -65,13 +65,13 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: "18"
cache: "yarn"
cache: 'npm'

- name: Install
run: yarn install --frozen-lockfile --non-interactive
run: npm install

- name: Build Storybook
run: yarn build-storybook
run: npm run build-storybook
env:
NODE_OPTIONS: --max_old_space_size=16384

Expand Down

0 comments on commit df227dc

Please sign in to comment.