1. Shorted the seal timeout judgemet from 30 minutes to 5 minutes for… #38
This file contains 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: Node.js CI | |
on: | |
push: | |
branches: [ mainnet ] | |
pull_request: | |
branches: [ mainnet ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: volta-cli/action@v1 | |
- run: npm ci --no-audit | |
- run: npm run lint --if-present | |
- run: npm test | |
- run: npm run build --if-present | |
env: | |
CI: true |