Skip to content

Commit

Permalink
remove dependabot if check on CI and make it run on all 3 hosts (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
CloudNStoyan authored Dec 7, 2024
1 parent 71b749b commit e549645
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: dependabot-ci
name: ci
on: pull_request

# Cancel in progress workflows
Expand All @@ -13,11 +13,11 @@ jobs:
fail-fast: false
matrix:
node-version: [18, 20, 22]
os: [ubuntu-latest, windows-latest, macos-latest]

name: Node.js ${{matrix.node-version}}
name: Node.js ${{matrix.node-version}} - ${{matrix.os}}

runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down

0 comments on commit e549645

Please sign in to comment.