We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b092e commit b0d57b8Copy full SHA for b0d57b8
.github/workflows/danger.yml
@@ -12,6 +12,6 @@ jobs:
12
- name: Danger
13
uses: danger/[email protected]
14
with:
15
- args: '--use-github-checks --dangerfile ./.github/workflows/js/dangerfile.ts'
+ args: '--dangerfile ./.github/workflows/js/dangerfile.ts'
16
env:
17
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/js/dangerfile.ts
@@ -1,13 +1,14 @@
1
import { danger, fail } from 'danger';
2
-import yarn from 'danger-plugin-yarn'
+// import yarn from 'danger-plugin-yarn'
3
// import jest from "danger-plugin-jest"
4
5
export default async () => {
6
if (danger.github.pr) {
7
console.log('PR exists', danger.github.pr.html_url);
8
+ fail('This dangerfile is not ready yet.');
9
} else {
10
fail('PR does not exist');
11
}
- await yarn();
+ // await yarn();
0 commit comments