Skip to content
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CI"
name: 'CI'

on:
push:
Expand All @@ -14,25 +14,25 @@ jobs:
- run: true

test:
name: yarn ${{ matrix.yarncmd }}
name: npm run ${{ matrix.npmcmd }}
runs-on: ubuntu-latest
strategy:
matrix:
yarncmd: ["test"]
npmcmd: ['test']
steps:
- uses: actions/checkout@v4
- name: Configure
run: |
git config --global user.email uirouter@github.actions
git config --global user.name uirouter_github_actions
- name: Install Dependencies
run: yarn install --pure-lockfile
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install chromium
- name: Check Peer Dependencies
run: npx check-peer-dependencies
- name: Run Tests
run: yarn ${{ matrix.yarncmd }}
run: npm run ${{ matrix.npmcmd }}
- name: Upload Playwright Report
uses: actions/upload-artifact@v4
if: always()
Expand Down
Loading
Loading