Merge pull request #106 from postmanlabs/feature/remove-unwanted-depe… #322
  
    
      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: CI | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '*.md' | |
| pull_request: | |
| branches: [$default-branch] | |
| schedule: | |
| - cron: '0 12 * * 0' | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js 10.x | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 10.x | |
| - name: Install | |
| run: npm install | |
| - name: Run lint tests | |
| run: npm run lint | |
| browser-tests: | |
| name: Browser Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js 16.x | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16.x | |
| - name: Install with legacy peer deps | |
| run: npm install --legacy-peer-deps | |
| - name: Run browser tests | |
| run: npm run test-browser | |
| tests: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [16, 18] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install with legacy peer deps | |
| run: npm install --legacy-peer-deps | |
| - name: Run tests and upload coverage | |
| run: npm run test-ci |