Skip to content

Commit

Permalink
Use npm instead of yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdragon-001 committed Jan 21, 2024
1 parent 88ebcd7 commit b9753a7
Show file tree
Hide file tree
Showing 6 changed files with 24,935 additions and 4,993 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ jobs:
uses: actions/checkout@v3

- name: Download dependencies
run: yarn --cwd ./axolotl-web install --frozen-lockfile
run: npm --prefix ./axolotl-web ci --loglevel verbose

- name: Run tests
run: yarn --cwd ./axolotl-web run test
run: npm --prefix ./axolotl-web test

- name: Lint application
run: yarn --cwd ./axolotl-web run lint
run: npm --prefix ./axolotl-web run lint

- name: Analyze node dependencies
run: yarn --cwd ./axolotl-web run depcheck
- name: Analyze npm dependencies
run: npm --prefix ./axolotl-web run depcheck

- name: Build
run: yarn --cwd ./axolotl-web run build
run: npm --prefix ./axolotl-web run build

- name: Upload build artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -131,10 +131,10 @@ jobs:
run: cargo install tauri-cli

- name: Install vite
run: yarn install -g vite
run: npm install -g vite

- name: Download dependencies
run: yarn --cwd ./axolotl-web install --frozen-lockfile
run: npm --prefix ./axolotl-web ci --loglevel verbose

- name: Build deb package
run: cargo tauri build -b deb --features tauri
Expand Down
Loading

0 comments on commit b9753a7

Please sign in to comment.