Bump @slack/web-api from 7.9.3 to 7.11.0 (#177) #393
This file contains hidden or 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: | |
| push: | |
| branches: | |
| - main | |
| - 'releases/*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install Dependencies | |
| run: pnpm install | |
| - name: Check Format | |
| run: pnpm format:check | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Test | |
| run: pnpm test:ci | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| SLACK_DEPLOY_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN_FOR_TESTING }} | |
| SLACK_DEPLOY_CHANNEL: 'C040YVCUDRR' #github_action_testing | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Post to Slack | |
| uses: ./ | |
| id: slack | |
| - uses: ./ | |
| with: | |
| thread_ts: ${{ steps.slack.outputs.ts }} | |
| conclusion: true |