We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e73b7d commit d95f266Copy full SHA for d95f266
.github/workflows/ci.yml
@@ -14,20 +14,20 @@ jobs:
14
- run: true
15
16
test:
17
- name: yarn ${{ matrix.yarncmd }}
+ name: npm run ${{ matrix.npmcmd }}
18
runs-on: ubuntu-latest
19
strategy:
20
matrix:
21
- yarncmd: ['build']
+ npmcmd: ['build']
22
steps:
23
- uses: actions/checkout@v2
24
- name: Configure
25
run: |
26
git config --global user.email uirouter@github.actions
27
git config --global user.name uirouter_github_actions
28
- name: Install Dependencies
29
- run: yarn install --pure-lockfile
+ run: npm ci
30
- name: Check Peer Dependencies
31
run: npx check-peer-dependencies
32
- name: Run Tests
33
- run: yarn ${{ matrix.yarncmd }}
+ run: npm run ${{ matrix.npmcmd }}
0 commit comments