This repository was archived by the owner on Jan 15, 2025. It is now read-only.
bump: [DotNet] Update generators and skill bots to NET 8 (#1560) #1064
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: Lint Workspaces | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| lint: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: use node 12.x | |
| uses: actions/setup-node@v2-beta | |
| with: | |
| node-version: 12.x | |
| - uses: actions/cache@v2 | |
| with: | |
| path: .yarn/cache | |
| key: windows-latest-node12.x-yarn-${{ hashFiles('**/yarn.lock') }} | |
| - name: yarn | |
| run: yarn --immutable | |
| - name: yarn lint | |
| run: yarn lint |