Skip to content

Commit

Permalink
Add missing runtime dependencies (#27)
Browse files Browse the repository at this point in the history
- Add missing dependencies
- Split workflow into two jobs
  • Loading branch information
wawe authored Nov 30, 2023
1 parent 0cf8729 commit 79717ed
Show file tree
Hide file tree
Showing 75 changed files with 3,378 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/testAction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
branches: [ main ]

jobs:
action_outputs:
build_and_test:
runs-on: ubuntu-latest
name: Test action
name: Run unit tests
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
Expand All @@ -20,6 +20,12 @@ jobs:
# checked-in dependencies match those described in package.json
- run: git diff --exit-code
- run: npm test

action_outputs:
runs-on: ubuntu-latest
name: Run action and check output
steps:
- uses: actions/checkout@v4
- uses: ./
id: version
- name: Test outputs
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

node_modules/*

!node_modules/@actions
!node_modules/@actions
!node_modules/uuid
!node_modules/tunnel
6 changes: 6 additions & 0 deletions node_modules/tunnel/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions node_modules/tunnel/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions node_modules/tunnel/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

185 changes: 185 additions & 0 deletions node_modules/tunnel/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/tunnel/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 79717ed

Please sign in to comment.