Skip to content

Commit

Permalink
chore: 🔧 update test workflow trigger paths
Browse files Browse the repository at this point in the history
* Updated the GitHub Actions workflow to include additional paths for triggering on `push` and `pull_request` events.
* Added paths for `patches/`, `src/`, `tests/`, `package.json`, `bun.lockb`, and `tsconfig.json` to ensure relevant changes are captured.
  • Loading branch information
okineadev committed Dec 21, 2024
1 parent 6f6816d commit 23fd7c0
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,21 @@ on:
# https://blog.esciencecenter.nl/reduce-reuse-recycle-save-the-planet-one-github-action-at-a-time-4ab602255c3f
push:
paths:
- src/*
- 'patches/'
- 'src/'
- 'tests/'
- 'package.json'
- 'bun.lockb'
- 'tsconfig.json'

pull_request:
paths:
- src/*
- 'patches/'
- 'src/'
- 'tests/'
- 'package.json'
- 'bun.lockb'
- 'tsconfig.json'

workflow_dispatch:

Expand Down

0 comments on commit 23fd7c0

Please sign in to comment.