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

Migration from Truffle to Hardhat/Foundry #488

Migration from Truffle to Hardhat/Foundry

Migration from Truffle to Hardhat/Foundry #488

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2-beta
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- 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: Process templates
run: npm run template:process
- name: Run tests
run: npm run test:ci