chore: ignore commits by github-actions[bot] in renovate config #575
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: | |
pull_request: | |
branches: | |
- main | |
env: | |
CI: true | |
jobs: | |
eslint: | |
name: ESLint | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
- name: setup node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: ESLint | |
run: pnpm nx affected --target=lint --parallel | |
prettier: | |
name: Prettier | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
- name: setup node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Prettier | |
run: pnpm nx affected --target=ci:format --parallel |