From 80702490881a9d458f709f945df8f29134233763 Mon Sep 17 00:00:00 2001
From: Alexander <alexander@lsndr.me>
Date: Fri, 8 Sep 2023 23:20:34 +0400
Subject: [PATCH] revert: run tests on push (#37)

This reverts commit c1eec139305a16bc873fd4bff0ebbdbe99170400.
---
 .github/workflows/build-and-test.yml | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml
index 6f2129d..75c2f87 100644
--- a/.github/workflows/build-and-test.yml
+++ b/.github/workflows/build-and-test.yml
@@ -3,31 +3,13 @@ name: Build & Test
 on:
   pull_request:
     branches: [master, next, "*.x", beta, alpha]
-  push:
-    branches: [master, next, "*.x", beta, alpha]
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:
-  update-dependencies-cache:
-    if: ${{ github.event_name	== 'push' }}
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v2
-
-      - name: Install Node.js ${{ matrix.node }}
-        uses: actions/setup-node@v2
-        with:
-          node-version: ${{ matrix.node }}
-          cache: 'npm'
-
-      - name: Install Dependencies
-        run: npm ci
-
   test:
-    if: ${{ github.event_name	!= 'push' }}
     runs-on: ubuntu-latest
     strategy:
       fail-fast: false