Skip to content

Commit 040c79a

Browse files
authored
Merge pull request #48 from userback/mark/gh-actions-pr-ci
Enable PR builds in GH actions
2 parents 6b19f11 + ba35da7 commit 040c79a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/main.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ on:
44
push:
55
branches: [ develop, master ]
66
pull_request:
7-
branches: [ develop, master ]
87

98
jobs:
109

10+
# Scan for vulnerable dependencies (npm audit)
11+
dependency-review:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/dependency-review-action@v2
16+
1117
# Ensure basic typescript checks and linting passes
1218
lint:
1319
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)