Add composite action for dotnet unit tests #11
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 format of workflows | |
on: | |
pull_request: | |
branches: [trunk] | |
jobs: | |
prettier_check: | |
name: 'Prettier check' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Prettier | |
run: yarn global add [email protected] | |
- name: Check format of workflows and README | |
run: prettier --check --single-quote .github/workflows/* **/action.yml README.md |