fix(deps): bump sha.js from 2.4.11 to 2.4.12 #200
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: Check PR | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| cd: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node: [16] | |
| steps: | |
| - name: π Checkout | |
| uses: actions/checkout@master | |
| - name: π Setup node env | |
| uses: actions/setup-node@v2.1.2 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| - name: π¦ Cache node_modules | |
| uses: actions/cache@v2 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: π¨π»βπ» Install dependencies (2) | |
| run: npm install | |
| - name: π¨π»βπ» Install dependencies (3) | |
| run: npm ci | |
| - name: π¨βποΈ Generate | |
| run: npm run generate | |