[Platform]: slightly change in wording (#687) #66
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: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| types: [opened, synchronize] | |
| workflow_call: | |
| jobs: | |
| format: | |
| name: Check format ✨ | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 23 | |
| - uses: mskelton/setup-yarn@v3 | |
| - name: Check format | |
| run: yarn format:check | |
| lint: | |
| name: Lint code 🧹 | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 23 | |
| - uses: mskelton/setup-yarn@v3 | |
| - name: Lint code | |
| # TODO: run: yarn lint | |
| run: echo "Lint code here" |