Bump eslint-plugin-react from 7.33.2 to 7.34.0 #33
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: Build | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
- CHANGELOG.md | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
- CHANGELOG.md | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
name: 🛠️ Build | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: ⎔ Set up pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: 📥 Download deps | |
run: pnpm install | |
- name: 🛠️ Build | |
run: pnpm build | |
- name: 🧪 Test | |
run: pnpm test | |
- name: 📣 Create Release Pull Request or Publish to npm | |
if: ${{ github.ref == 'refs/heads/main' }} | |
uses: changesets/action@v1 | |
with: | |
title: "chore(release): version packages" | |
publish: pnpm packages:publish | |
version: pnpm packages:version | |
commit: "chore(release): version packages" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |