Skip to content

Commit

Permalink
perf: migrate from yarn to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Mar 26, 2024
1 parent bd4d279 commit 6c455a2
Show file tree
Hide file tree
Showing 4 changed files with 4,915 additions and 2,681 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
# cache: 'yarn'

- name: Fetch deps
run: yarn --mutex network --frozen-lockfile --network-concurrency 25 --silent --disable-self-update-check
run: npm ci

- name: Build
run: yarn build
run: npm run build

- name: Run tests
run: yarn test
run: npm run test

# - name: Codeclimate
# if: github.ref == 'refs/heads/main'
Expand Down Expand Up @@ -76,14 +76,14 @@ jobs:
cache: 'yarn'

- name: Fetch deps
run: yarn --mutex network --frozen-lockfile --network-concurrency 25 --silent --disable-self-update-check
run: npm ci

- name: Build
run: yarn build
run: npm run build

- name: Run all tests
if: matrix.os == 'ubuntu-22.04'
run: yarn test
run: npm run test

- name: Run win32 tests
if: matrix.os == 'windows-latest'
Expand Down
Loading

0 comments on commit 6c455a2

Please sign in to comment.