Update typescript-eslint monorepo to ^8.13.0 #671
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: e2e:test:build test docs | |
on: push | |
jobs: | |
files-changed: | |
name: Detect File Changes | |
runs-on: ubuntu-latest | |
outputs: | |
changes: ${{ steps.changes.outputs.e2e-docs }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Check for e2e docs file changes | |
uses: dorny/[email protected] | |
id: changes | |
with: | |
token: ${{ github.token }} | |
filters: .github/file-filters.yml | |
list-files: shell | |
build: | |
if: needs.files-changed.outputs.changes == 'true' | |
name: Build Docs - E2E Testing | |
needs: files-changed | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set Node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '>=21' | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: E2E Testing | Build Docs | |
run: npm install && npm run docs:build |