diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 555fd3f72..000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: 'CI' - -on: - push: - branches: - - master - pull_request: - -jobs: - ci: - needs: [test] - runs-on: ubuntu-latest - steps: - - run: true - - test: - name: yarn ${{ matrix.yarncmd }} - runs-on: ubuntu-latest - strategy: - matrix: - yarncmd: ['test', 'test:downstream', 'docs'] - steps: - - uses: actions/checkout@v2 - - name: Configure Environment - 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 - - name: Check Peer Dependencies - run: npx check-peer-dependencies - - name: Run yarn ${{ matrix.yarncmd }} - run: yarn ${{ matrix.yarncmd }}