Skip to content

Commit

Permalink
Merge pull request #3489 from jspsych/adjust-action-run-once
Browse files Browse the repository at this point in the history
Avoid running action more than once when push to a PR
  • Loading branch information
jodeleeuw authored Jan 27, 2025
2 parents 8ccaa5c + 236657d commit ec7e611
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: build

on: [push, pull_request]
on:
push:
pull_request:
types: [opened, reopened, ready_for_review, review_requested]

jobs:
test:
name: Build, lint, and test on Node.js ${{ matrix.node }}

runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit ec7e611

Please sign in to comment.