Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jgutierrezglez committed Apr 12, 2024
1 parent f7f40b2 commit da426bf
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Test the action on success
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Success
run: exit 0
Expand All @@ -24,7 +24,7 @@ jobs:
name: Test the action on failure
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Failure
run: exit 1
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const core = require("@actions/core");
const github = require('@actions/github');
const fetch = require("node-fetch");
const {v4 : uuidv4} = require('uuid')

const { buildSlackAttachments, formatChannelName } = require('./src/utils');

Expand Down
58 changes: 58 additions & 0 deletions package-lock.json

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

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@
"homepage": "https://github.com/Bandwidth/build-notify-slack-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"uuid": "^9.0.1"
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@vercel/ncc": "^0.36.1",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
}
}

0 comments on commit da426bf

Please sign in to comment.