Skip to content

Commit d95f266

Browse files
chore: switch from yarn to npm
1 parent 8e73b7d commit d95f266

File tree

4 files changed

+6641
-4108
lines changed

4 files changed

+6641
-4108
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ 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: ['build']
21+
npmcmd: ['build']
2222
steps:
2323
- uses: actions/checkout@v2
2424
- name: Configure
2525
run: |
2626
git config --global user.email uirouter@github.actions
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: Check Peer Dependencies
3131
run: npx check-peer-dependencies
3232
- name: Run Tests
33-
run: yarn ${{ matrix.yarncmd }}
33+
run: npm run ${{ matrix.npmcmd }}

0 commit comments

Comments
 (0)