fix(deps): update dependency eslint-plugin-react to v7.37.4 #1427
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: | |
lint: | |
name: Lint | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v4 | |
- 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 run lint' | |
- name: Prettier | |
run: 'pnpm run ci:format' | |
changeset: | |
name: Changeset | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GH_PAT }} # Needed to trigger CI when changes made | |
- name: Create/Update Changesets | |
uses: 'the-guild-org/changesets-dependencies-action@v1.2.2' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} # Needed to trigger CI when changes made |