Skip to content

chore(deps): bump braces from 3.0.2 to 3.0.3 in /implementations #622

chore(deps): bump braces from 3.0.2 to 3.0.3 in /implementations

chore(deps): bump braces from 3.0.2 to 3.0.3 in /implementations #622

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the contract abis + JSON interfaces and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI - Build + Test
on:
push:
branches:
- "develop"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: implementations
steps:
- uses: actions/checkout@v2
- name: Setup Node.js 16
uses: actions/setup-node@v2
with:
node-version: "16" # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
cache: "npm"
cache-dependency-path: implementations/package-lock.json
- name: Install dependencies
run: npm ci
- name: Run Solidity Linter
run: npm run lint:solidity
- name: Run ESLint on JS/TS files
run: npm run lint
- name: Compile contracts
run: npm run build --if-present
- name: Run Tests (with coverage)
run: npm run test:coverage
- name: Upload to Coveralls
uses: coverallsapp/github-action@master
with:
path-to-lcov: ./implementations/coverage/lcov.info
github-token: ${{ secrets.GITHUB_TOKEN }}
# TODO: fix authentication token to enable auto-comment in PRs opened from forks
# - name: Code coverage report
# uses: romeovs/lcov-reporter-action@v0.2.16
# with:
# lcov-file: ./implementations/coverage/lcov.info
# github-token: ${{ secrets.LUKSO_DEVOPS_TOKEN }}
# title: 📊 Solidity code coverage
# filter-changed-files: true
# delete-old-comments: true