Bump bn.js and sgmf-scripts #51
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: default | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v3 | |
| - name: nodejs setup (12.x) | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 12.x | |
| - name: install dependencies | |
| run: npm ci | |
| - name: test | |
| run: npm run test |