Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: only trigger ASAN build on C/C++ files
  • Loading branch information
nschonni committed Mar 8, 2020
commit c41e60287ca563961012e3b24fc59cbd24b9955a
14 changes: 13 additions & 1 deletion .github/workflows/ASAN.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: node ASAN

on: [push, pull_request]
on:
push:
paths:
- "**/*.cpp"
- "**/*.c"
- "**/*.cc"
- "**/*.h"
pull_request:
paths:
- "**/*.cpp"
- "**/*.c"
- "**/*.cc"
- "**/*.h"

jobs:
ubuntu-build:
Expand Down