Enhancement/issue 823 ensure greenwood cli and plugins are favoring idiomatic usages of async #26
Workflow file for this run
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: Continuous Integration Windows (Loaders) | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| node: [22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| with: | |
| version: latest | |
| - name: Installing project dependencies | |
| run: | | |
| yarn install --frozen-lockfile --network-timeout 1000000 && yarn lerna bootstrap | |
| - name: Test | |
| run: | | |
| yarn test:loaders:win |