chore(deps): update typescript-eslint monorepo to v7.10.0 - autoclosed #288
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: "🧪 CI" | |
on: | |
# push: | |
# branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
# We need to fetch all branches and commits so that Nx affected has a base to compare against. | |
fetch-depth: 0 | |
- name: "Derive appropriate SHAs for base and head for `nx affected` commands" | |
uses: nrwl/nx-set-shas@76907e7e5d3cd17ddb5e2b123389f054bffcdd03 # v4 | |
- name: "Setup Node.js ${{ matrix.node }}" | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "yarn" | |
- name: "Install Dependencies" | |
run: yarn install | |
# - name: "Format Check" | |
# run: yarn run nx affected --target=format:check --parallel --max-parallel=2 | |
# - name: "Lint" | |
# run: yarn run nx affected --target=lint --parallel --max-parallel=2 | |
- name: "Build" | |
run: yarn run nx run-many --target=build --parallel --max-parallel=2 |