Chore: use npm creds context #267
  
    
      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: Check with yarn | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Install and test with yarn | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "18.16" | |
| # we need --ignore-engines because some packages requires node 20 and up in the engine and we are currently stuck on node 18 | |
| # until an upgrade to node 20 is made, which is currently unplanned. @see https://github.com/cypress-io/request/issues/68 | |
| - run: yarn install --ignore-engines | |
| - run: yarn test |