Bump cypress from 13.9.0 to 13.11.0 (#123) #208
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request_target: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
ref: ${{ github.event.pull_request.head.sha }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- run: npm ci | |
downstream-build: | |
runs-on: ubuntu-latest | |
needs: build | |
strategy: | |
matrix: | |
movie-example: | |
- movies-python-bolt | |
- movies-java-bolt | |
- movies-dotnetcore-bolt | |
- movies-golang-bolt | |
- movies-javascript-bolt | |
- movies-java-spring-data-neo4j | |
steps: | |
- name: Unfold this | |
run: echo 'Check https://github.com/neo4j-examples/${{ matrix.movie-example }}/actions' | |
- name: Trigger build | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
repository: neo4j-examples/${{ matrix.movie-example }} | |
event-type: movie-harness-change | |
token: ${{ secrets.TOKEN }} | |
client-payload: '{"sha": "${{ github.sha }}"}' |