Update CODE_OF_CONDUCT.md (#5306) #1297
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| name: Backwards Compatibility Check | |
| permissions: | |
| contents: read | |
| env: | |
| CYPRESS_CACHE_FOLDER: ~/cypress-binary-cache | |
| CYPRESS_DASHBOARD_RECORD_KEY: ${{ secrets.CYPRESS_DASHBOARD }} | |
| GH_TOKEN: ${{ github.token }} | |
| jobs: | |
| prepare: | |
| uses: ./.github/workflows/prepare.yml | |
| with: | |
| buildcache_key: compat_buildcache-${{ github.ref }} | |
| secrets: inherit | |
| permissions: | |
| actions: write | |
| contents: read | |
| compatibility: | |
| name: Compatibility Tests | |
| needs: prepare | |
| runs-on: ubuntu-latest | |
| env: | |
| USE_CYPRESS_DASHBOARD: true # enable when trying to debug | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: '24.x' | |
| - uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 | |
| with: | |
| path: | | |
| ~/tmp_build | |
| ~/cypress-binary-cache | |
| key: compat_buildcache-${{ github.ref }} | |
| - run: cp -r ~/tmp_build/* . | |
| - run: bash ./scripts/testCompatibility.sh --tag latest |