Integration of new Features & removal of registry user and org. #2078
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: "Test" | |
| on: | |
| pull_request: | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| - run: npm run action:test | |
| coverage: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| - run: npm run action:coverage |