[Snyk] Fix for 5 vulnerabilities #1572
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: Web3 | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- "web3.js/**" | |
pull_request: | |
branches: [ master ] | |
paths: | |
- "web3.js/**" | |
jobs: | |
# needed for grouping check-web3 strategies into one check for mergify | |
all-web3-checks: | |
runs-on: ubuntu-latest | |
needs: | |
- check-web3 | |
steps: | |
- run: echo "Done" | |
web3-commit-lint: | |
runs-on: ubuntu-latest | |
# Set to true in order to avoid cancelling other workflow jobs. | |
# Mergify will still require web3-commit-lint for automerge | |
continue-on-error: true | |
defaults: | |
run: | |
working-directory: web3.js | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# maybe needed for base sha below | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: 'npm' | |
cache-dependency-path: web3.js/package-lock.json | |
- run: npm ci | |
- name: commit-lint | |
if: ${{ github.event_name == 'pull_request' }} | |
run: bash commitlint.sh | |
env: | |
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} | |
check-web3: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: web3.js | |
strategy: | |
matrix: | |
node: [ '12', '14', '16' ] | |
name: Node ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
cache-dependency-path: web3.js/package-lock.json | |
- run: | | |
source .travis/before_install.sh | |
npm install | |
source .travis/script.sh |