Bump eslint-plugin-jest from 28.5.0 to 28.9.0 #222
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: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Check Format | |
run: npm run format:check | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run 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@v4 | |
- name: Post to Slack | |
uses: ./ | |
id: slack | |
- uses: ./ | |
with: | |
thread_ts: ${{ steps.slack.outputs.ts }} | |
conclusion: true |