chore(deps): update dependency lerna to v9 #8017
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 Parsers | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16, 18] | |
| steps: | |
| - uses: actions/checkout@v3.5.2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3.6.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install, Build, and Test | |
| run: | | |
| cd packages/ynap-parsers | |
| yarn install | |
| yarn build | |
| yarn test --coverage | |
| env: | |
| CI: true | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v3.1.3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |