Use raw manifest instead of Map manifest object when determining default alias group ('max')
#94
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: Test | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: "22.11.0" | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Install corepack | |
| run: | | |
| npm install -g corepack | |
| - name: Enable corepack | |
| run: | | |
| corepack enable | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Test | |
| run: | | |
| yarn test |