yarn: bump @types/node from 18.19.3 to 20.11.25 #472
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: Check PR | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
permissions: | |
issues: write | |
pull-requests: write | |
statuses: write | |
jobs: | |
check: | |
name: check lint and test | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/yarn | |
- name: run lint | |
shell: bash | |
run: yarn lint:ci | |
- name: run test | |
shell: bash | |
run: yarn test:ci | |
- name: run danger | |
shell: bash | |
run: yarn run danger ci | |
env: | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }} | |
- name: auto merge | |
uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
github-token: ${{ secrets.DEPENDABOT_TOKEN }} |