Skip to content

feat(cli): build command ux improvements #1998

feat(cli): build command ux improvements

feat(cli): build command ux improvements #1998

Workflow file for this run

name: Test-e2e
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.5.1'
cache: 'npm'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- run: npm ci
- run: npm run build
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
- name: Update Hardhat Example Package
run: cd ./examples/sample-hardhat-project && npm i
- name: Update Foundry Example Package
run: cd ./examples/sample-foundry-project && npm i
- name: Initialize submodules
run: cd ./packages/cli && npm run test-e2e-prepare
- name: E2E Tests
run: cd ./packages/cli && npm run test-e2e