From 13ae215a76a9846ff5f7873d0075601a10706eb2 Mon Sep 17 00:00:00 2001 From: Daniel Perez Alvarez Date: Tue, 6 Aug 2024 15:57:11 -0400 Subject: [PATCH] ci: fix duplicated checks --- .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 8094a2f8..5d0882db 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