chore(deps): update dependency eslint-config-prettier to v10 #2711
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: Verify | |
on: [pull_request] | |
concurrency: | |
group: verify-${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
NODE_VERSION: 20.x | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: yarn | |
- name: Configure package manager | |
run: | | |
yarn config set npmAuthToken ${{ secrets.NPM_READ_TOKEN }} | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Lint | |
run: yarn lint | |
- name: Check types | |
run: yarn types | |
- name: Test | |
run: yarn test --coverage --silent | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build | |
run: yarn build | |
notification: | |
if: always() | |
name: notification | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: technote-space/workflow-conclusion-action@v3.0.3 | |
- uses: reside-eng/workflow-status-notification-action@v1 | |
with: | |
current-status: ${{ env.WORKFLOW_CONCLUSION }} | |
slack-webhook: ${{ secrets.SLACK_WEBHOOK_PLATFORM_NONPROD }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} |