build(deps): update typescript-eslint monorepo to v7 #1812
Workflow file for this run
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: Check renovate auto-merge applicability | |
on: | |
push: | |
branches: | |
- renovate/* | |
jobs: | |
build-and-test: | |
name: Build and test | |
uses: ROpdebee/mb-userscripts/.github/workflows/build-and-test.yml@main | |
fail-changed-userscript: | |
name: Fail if userscripts are changed by update | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
# Fetch the whole repository history, as we need to check out an old | |
# ref to compare compiled scripts from before and after the change. | |
fetch-depth: 0 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Checkout second dist copy | |
uses: actions/checkout@v4 | |
with: | |
path: repoDist | |
ref: dist | |
- name: Check that userscripts remain unchanged | |
env: | |
NODE_ENV: production # Necessary to ensure we minify in the preview | |
run: npx tsx build/check-scripts-unchanged.ts repoDist |