Skip to content

Commit

Permalink
Merge pull request #2 from ctcampbell/add-dependency-review
Browse files Browse the repository at this point in the history
Create dependency-review.yml
  • Loading branch information
ctcampbell authored Dec 12, 2023
2 parents fe31757 + d828941 commit c0c3744
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .funcignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ local.settings.json
tsconfig.json
.env
.nvmrc
/src
/src
*.md
*.txt
20 changes: 20 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Dependency review'
on:
pull_request:
branches:
- main

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
with:
comment-summary-in-pr: true
retry-on-snapshot-warnings: true
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.nvmrc

# Logs
logs
*.log
Expand Down
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
"type": "func",
"label": "func: host start",
"command": "host start --verbose",
"command": "host start",
"problemMatcher": "$func-node-watch",
"isBackground": true,
"dependsOn": "npm build (functions)"
Expand Down

0 comments on commit c0c3744

Please sign in to comment.