Skip to content
Snippets Groups Projects
Select Git revision
  • cf4702aa02567797cccc6eaf929ca069f1574466
  • master default protected
  • 10-unl-ru
3 results

output.html

Blame
  • node.js.yml 775 B
    # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
    # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
    
    name: Node.js CI
    
    on:
      push:
        branches: [ master ]
      pull_request:
        branches: [ master ]
    
    jobs:
      build:
        runs-on: ubuntu-latest
        strategy:
          matrix:
            node-version: [14.x, 16.x, 18.x, 19.x]
    
        steps:
        - uses: actions/checkout@v3
        - name: Use Node.js ${{ matrix.node-version }}
          uses: actions/setup-node@v2
          with:
            node-version: ${{ matrix.node-version }}
        - run: npm ci
        - run: npm test
        - name: Upload coverage to Codecov
          uses: codecov/codecov-action@v3