Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias authored Sep 19, 2023
1 parent 6c2b9ba commit bc35f0d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions examples/github-actions-with-dangerjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,20 +99,21 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "14.x"
node-version: "18.x"
- name: Install Dependencies
run: npm install
- name: Run DangerJS
run: npx danger ci
- name: Danger JS Action
uses: danger/[email protected]
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
```

### Step 6: Pushing to the Repository
Expand Down

0 comments on commit bc35f0d

Please sign in to comment.