chore(deps): Bump node-forge from 1.3.1 to 1.3.2 in /packages/core-forger #3008
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: Linting | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| - "develop" | |
| pull_request: | |
| types: [ready_for_review, synchronize, opened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| source: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Cache node modules | |
| uses: actions/cache@v1 | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: ${{ runner.os }}-node- | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install & Build | |
| run: yarn install | |
| - name: Lint Source | |
| run: yarn lint |