From c7dce5e5468f063956e3ead4f21d592f6bb8bf5e Mon Sep 17 00:00:00 2001 From: Daniel Perez Alvarez Date: Tue, 6 Aug 2024 20:04:58 +0000 Subject: [PATCH] ci: remove duplicated checks on gh (#210) push events on GitHub Action were already running on the pull requests. Before ![image](https://github.com/user-attachments/assets/8cea4e30-d0a8-4dd8-9e67-f9d8a5c4cfca) Now ![image](https://github.com/user-attachments/assets/6dbde758-3a92-4d9a-9933-0700df6209b3) --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8094a2f..5d0882d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,14 +1,14 @@ name: Node.js CI -on: [ push, pull_request ] +on: [push] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-latest ] - node-version: [ 18, 20, 21 ] + os: [ubuntu-latest, windows-latest, macos-latest] + node-version: [18, 20, 21] steps: - name: Checkout