docs(contents): 📖 create work page in all languages supported #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Danger on PR | |
on: | |
pull_request: | |
types: [edited, opened, reopened, synchronize] | |
permissions: | |
contents: read | |
pull-requests: write | |
statuses: write | |
jobs: | |
danger: | |
name: Run Danger JS on Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Bun with Mise | |
uses: jdx/mise-action@v2 | |
- name: Install dependencies | |
run: bun i --no-save | |
- name: Danger | |
run: bun danger ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |