Skip to content

Commit 834d390

Browse files
chore: migrate from yarn to npm
1 parent 19b1f03 commit 834d390

File tree

4 files changed

+2105
-1479
lines changed

4 files changed

+2105
-1479
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "CI"
1+
name: 'CI'
22

33
on:
44
push:
@@ -14,25 +14,25 @@ jobs:
1414
- run: true
1515

1616
test:
17-
name: yarn ${{ matrix.yarncmd }}
17+
name: npm run ${{ matrix.npmcmd }}
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
yarncmd: ["test"]
21+
npmcmd: ['test']
2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Configure
2525
run: |
2626
git config --global user.email [email protected]
2727
git config --global user.name uirouter_github_actions
2828
- name: Install Dependencies
29-
run: yarn install --pure-lockfile
29+
run: npm ci
3030
- name: Install Playwright Browsers
3131
run: npx playwright install chromium
3232
- name: Check Peer Dependencies
3333
run: npx check-peer-dependencies
3434
- name: Run Tests
35-
run: yarn ${{ matrix.yarncmd }}
35+
run: npm run ${{ matrix.npmcmd }}
3636
- name: Upload Playwright Report
3737
uses: actions/upload-artifact@v4
3838
if: always()

0 commit comments

Comments
 (0)