Skip to content

Bump probot from 12.3.4 to 13.3.0 #795

Bump probot from 12.3.4 to 13.3.0

Bump probot from 12.3.4 to 13.3.0 #795

Workflow file for this run

name: Node.js CI
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
if: ${{ github.actor != 'dependabot'}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm install
- run: npm run test:unit:ci
strategy:
matrix:
node-version:
- 18
- 20