Skip to content

chore: switch from yarn to npm #390

chore: switch from yarn to npm

chore: switch from yarn to npm #390

Workflow file for this run

name: 'CI'
on:
push:
branches:
- master
pull_request:
jobs:
ci:
needs: [test]
runs-on: ubuntu-latest
steps:
- run: true
test:
name: npm run ${{ matrix.npmcmd }}
runs-on: ubuntu-latest
strategy:
matrix:
npmcmd: ['build']
steps:
- uses: actions/checkout@v2
- name: Configure
run: |
git config --global user.email uirouter@github.actions
git config --global user.name uirouter_github_actions
- name: Install Dependencies
run: npm ci
- name: Check Peer Dependencies
run: npx check-peer-dependencies
- name: Run Tests
run: npm run ${{ matrix.npmcmd }}