This repository was archived by the owner on Jan 19, 2026. It is now read-only.
Lock file maintenance #1421
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: | |
| push: | |
| branches: | |
| - main | |
| - 'renovate/*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) | |
| strategy: | |
| matrix: | |
| node: [ 10, 12 ] | |
| env: | |
| FORCE_COLOR: 1 | |
| name: Node ${{ matrix.node }} | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: yarn | |
| - run: yarn lint | |
| - run: yarn test |