Skip to content

yarn: bump @types/node from 18.19.3 to 20.11.25 #472

yarn: bump @types/node from 18.19.3 to 20.11.25

yarn: bump @types/node from 18.19.3 to 20.11.25 #472

Workflow file for this run

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 }}