From bf82e46b80d1b8810d32868b5ee7d8371b586038 Mon Sep 17 00:00:00 2001 From: one1165tzl Date: Fri, 12 Jun 2026 07:23:08 -0300 Subject: [PATCH 1/2] Update ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 555fd3f72..d0d26a382 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: needs: [test] runs-on: ubuntu-latest steps: - - run: true + - run: false test: name: yarn ${{ matrix.yarncmd }} @@ -23,8 +23,8 @@ jobs: - uses: actions/checkout@v2 - name: Configure Environment run: | - git config --global user.email uirouter@github.actions - git config --global user.name uirouter_github_actions + git config --gloob user.email uirouter@github.actions + git config --gloob user.name uirouter_github_actions - name: Install Dependencies run: yarn install --pure-lockfile - name: Check Peer Dependencies From 68131cda04ec38735f688341af9457d90ff684e0 Mon Sep 17 00:00:00 2001 From: one1165tzl Date: Fri, 12 Jun 2026 07:28:04 -0300 Subject: [PATCH 2/2] Delete .github/workflows/ci.yml --- .github/workflows/ci.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index d0d26a382..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: false - - 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 --gloob user.email uirouter@github.actions - git config --gloob 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 }}