chore(deps): update pnpm to v9.15.3 #3434
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: lint | |
on: | |
push | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
name: run eslint | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
run_install: true | |
- uses: actions/setup-node@v4.1.0 | |
with: | |
node-version-file: .node-version | |
cache: pnpm | |
- name: eslint check | |
run: | | |
pnpm lint | |
prettier: | |
runs-on: ubuntu-latest | |
name: run prettier check | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
run_install: true | |
- uses: actions/setup-node@v4.1.0 | |
with: | |
node-version-file: .node-version | |
cache: pnpm | |
- name: prettier check | |
run: | | |
pnpm lint:format | |
slack-notify: | |
if: always() | |
needs: [eslint, prettier] | |
name: post slack | |
runs-on: ubuntu-latest | |
steps: | |
- uses: Gamesight/slack-workflow-status@v1.3.0 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }} | |
- uses: swfz/failed-log-to-slack-action@v1.1.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} | |