Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ jobs:
- run: true

test:
name: yarn ${{ matrix.yarncmd }}
name: npm run ${{ matrix.npmcmd }}
runs-on: ubuntu-latest
strategy:
matrix:
yarncmd: ['build']
npmcmd: ['build']
steps:
- uses: actions/checkout@v2
- name: Configure
run: |
git config --global user.email [email protected]
git config --global user.name uirouter_github_actions
- name: Install Dependencies
run: yarn install --pure-lockfile
run: npm ci
- name: Check Peer Dependencies
run: npx check-peer-dependencies
- name: Run Tests
run: yarn ${{ matrix.yarncmd }}
run: npm run ${{ matrix.npmcmd }}
Loading