Merge pull request #1649 from gyde-internal/set-node-options-for-pnpm… #7346
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: 'integration' | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - 'releases/*' | |
| permissions: | |
| contents: read | |
| jobs: | |
| integration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'npm' | |
| - run: npm clean-install | |
| - name: Pre-fetch the pinned images | |
| run: npm run fetch-images -- bundler | |
| - run: npm run test-integration | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} |