Bump braces from 3.0.2 to 3.0.3 #20
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: Check | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
check-workspaces: | |
name: Check Workspaces | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.6 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: latest | |
- name: Setup Yarn | |
uses: threeal/setup-yarn-action@v2.0.0 | |
with: | |
version: stable | |
- name: Check Format | |
run: | | |
yarn workspaces foreach --all --topological run format | |
git diff --exit-code HEAD | |
- name: Check Lint | |
run: yarn workspaces foreach --all --topological run lint |