Bump follow-redirects from 1.15.2 to 1.15.5 in /packages/rifWalletServices #441
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
- name: Build and run tests | |
run: | | |
export NODE_OPTIONS="--max_old_space_size=4096" | |
npm i | |
npm run setup | |
npm run build | |
npx ganache-cli & | |
npm test | |
- name: Lint | |
run: npm run lint |