chore(deps): update dependency @whatwg-node/fetch to v0.10.13 #2569
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 | |
| env: | |
| NODE_NO_WARNINGS: true | |
| NODE_OPTIONS: '--max-old-space-size=8192' | |
| CI: true | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| prettier-check: | |
| name: prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Master | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - name: Setup env | |
| uses: the-guild-org/shared-config/setup@main | |
| with: | |
| nodeVersion: 18 | |
| - name: Prettier Check | |
| run: yarn prettier:check | |
| lint: | |
| name: lint | |
| uses: the-guild-org/shared-config/.github/workflows/lint.yml@main | |
| with: | |
| script: yarn ci:lint | |
| secrets: | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| unit: | |
| name: unit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Master | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 2.7.8 | |
| - name: Setup env | |
| uses: the-guild-org/shared-config/setup@main | |
| with: | |
| nodeVersion: 18 | |
| - name: Cache Jest | |
| uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 | |
| with: | |
| path: .cache/jest | |
| key: ${{ runner.os }}-jest-${{ hashFiles('yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-jest- | |
| - name: Test | |
| run: yarn test --ci |