Skip to content

Commit 79717ed

Browse files
authored
Add missing runtime dependencies (#27)
- Add missing dependencies - Split workflow into two jobs
1 parent 0cf8729 commit 79717ed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+3378
-3
lines changed

.github/workflows/testAction.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ on:
55
branches: [ main ]
66

77
jobs:
8-
action_outputs:
8+
build_and_test:
99
runs-on: ubuntu-latest
10-
name: Test action
10+
name: Run unit tests
1111
steps:
1212
- uses: actions/checkout@v4
1313
- name: Use Node.js 20
@@ -20,6 +20,12 @@ jobs:
2020
# checked-in dependencies match those described in package.json
2121
- run: git diff --exit-code
2222
- run: npm test
23+
24+
action_outputs:
25+
runs-on: ubuntu-latest
26+
name: Run action and check output
27+
steps:
28+
- uses: actions/checkout@v4
2329
- uses: ./
2430
id: version
2531
- name: Test outputs

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
node_modules/*
44

5-
!node_modules/@actions
5+
!node_modules/@actions
6+
!node_modules/uuid
7+
!node_modules/tunnel

node_modules/tunnel/.travis.yml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/tunnel/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/tunnel/LICENSE

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/tunnel/README.md

Lines changed: 185 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/tunnel/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)