JavaScript generic ASN.1 parser (mirror)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use `pnpm` 7 in order to run on `node` 14. https://pnpm.io/9.x/installation#compatibility

+1 -5
+1 -5
.github/workflows/node.js.yml
··· 19 19 - name: Use pnpm 20 20 uses: pnpm/action-setup@v4 21 21 with: 22 - version: 10 22 + version: 7 23 23 run_install: false 24 - if: matrix.node-version == 'latest' 25 24 - name: Use Node.js ${{ matrix.node-version }} 26 25 uses: actions/setup-node@v4 27 26 with: 28 27 node-version: ${{ matrix.node-version }} 29 28 cache: pnpm 30 29 - run: pnpm install 31 - if: matrix.node-version == 'latest' 32 - - run: npm install diff 33 - if: matrix.node-version != 'latest' 34 30 - run: node test all 35 31 - run: pnpm run lint 36 32 if: matrix.node-version == 'latest'