Skip to content

Merge pull request #172 from maticnetwork/spoofing-disclaimer #431

Merge pull request #172 from maticnetwork/spoofing-disclaimer

Merge pull request #172 from maticnetwork/spoofing-disclaimer #431

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- master
pull_request:
branches:
- develop
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v1
- name: Cache npm dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-npm-cache-
- name: Install npm dependencies
run: npm install
- name: Run tests
run: npm run test:ci