name: CI on: push jobs: build: name: Build & test runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, v14.6.0, 14.x, 16.x, '*'] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm install --no-package-lock - run: npm test