Replace copy-paste with clipboardy #438
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ethernaut cli CI | |
on: | |
push: | |
pull_request: | |
env: | |
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }} | |
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm run lint | |
ethernaut-common: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- name: Start local chain | |
run: | | |
npm run chain & | |
sleep 5 | |
- run: cd packages/ethernaut-common && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-common | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-util: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- run: cd packages/ethernaut-util && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-util | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-util-ui: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- run: cd packages/ethernaut-util-ui && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-util-ui | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-ui: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- run: cd packages/ethernaut-ui && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-ui | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-interact: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Start local chain | |
run: | | |
npm run chain & | |
sleep 5 | |
- run: cd packages/ethernaut-interact && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-interact | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-interact-ui: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Start local chain | |
run: | | |
npm run chain & | |
sleep 5 | |
- run: cd packages/ethernaut-interact-ui && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-interact-ui | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-challenges: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Start local chain | |
run: | | |
npm run chain & | |
sleep 5 | |
- run: cd packages/ethernaut-challenges && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-challenges | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-ai: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- run: cd packages/ethernaut-ai && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-ai | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-ai-ui: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- run: cd packages/ethernaut-ai-ui && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-ai-ui | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-network: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- run: cd packages/ethernaut-network && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-network | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-network-ui: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- run: cd packages/ethernaut-network-ui && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-network-ui | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-wallet: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Start local chain | |
run: | | |
npm run chain & | |
sleep 5 | |
- run: cd packages/ethernaut-wallet && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-wallet | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-wallet-ui: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Start local chain | |
run: | | |
npm run chain & | |
sleep 5 | |
- run: cd packages/ethernaut-wallet-ui && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-wallet-ui | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli | |
ethernaut-cli: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['20.12.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install xvfb | |
if: matrix.os == 'ubuntu-latest' && needs.changes.outputs.typescript == 'true' | |
run: sudo apt-get install -y xvfb | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run compile --if-present | |
- run: cd packages/ethernaut-cli && xvfb-run npm t | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: ethernaut-cli | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: theethernaut/ethernaut-cli |