chore(deps): update yarn to v4.5.2 #2207
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: Verify | |
on: [pull_request] | |
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: Install dependencies | |
run: yarn install --immutable | |
- name: Verify formatting | |
run: yarn format:check | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test --coverage --silent | |
- name: Upload coverage to Coveralls | |
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 # v2.3.4 | |
with: | |
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/[email protected] | |
- uses: reside-eng/[email protected] | |
with: | |
current-status: ${{ env.WORKFLOW_CONCLUSION }} | |
slack-webhook: ${{ secrets.SLACK_WEBHOOK_PLATFORM_PROD }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} |