build(issue-35): downgrade octokit to 18.12.0 (#36)

Fix https://github.com/lampajr/backporting/issues/35 by downgrading
octokit/rest to 18.12.0 as it seems that mock-github has some issues
when node ^18 and octokit ^19
This commit is contained in:
Andrea Lamparelli 2023-06-21 11:13:20 +02:00 committed by GitHub
parent bc5542a402
commit c63bc05d8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 3284 additions and 2722 deletions

View file

@ -10,9 +10,10 @@ on:
jobs:
build-and-test:
name: ${{ matrix.os }} - node ${{ matrix.node-version }}
strategy:
matrix:
node-version: [16]
node-version: [16, 18]
os: [ubuntu-latest]
fail-fast: true
runs-on: ${{ matrix.os }}

View file

@ -1,15 +1,16 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: "Pull Request Checks"
name: "Pull Request Check"
on: pull_request
jobs:
build:
name: ${{ matrix.os }} - node ${{ matrix.node-version }}
strategy:
matrix:
node-version: [16]
node-version: [16, 18]
os: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}