Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

fix: bridge ERC20 tokens from L1 to L2 using migrations scripts #414

fix: bridge ERC20 tokens from L1 to L2 using migrations scripts

fix: bridge ERC20 tokens from L1 to L2 using migrations scripts #414

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- master
- release-0.3-3
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- name: Cache npm dependencies
uses: actions/cache@v3
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: Process templates
run: npm run template:process
- name: Run tests
run: npm run test:ci