# eipw-action **Repository Path**: mirrors_ethereum/eipw-action ## Basic Information - **Project Name**: eipw-action - **Description**: Action for executing eipw, the EIP validator - **Primary Language**: Unknown - **License**: MPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-19 - **Last Updated**: 2026-04-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README eipw-action =========== A GitHub Action for running `eipw`, an Ethereum Improvement Proposal linter. ## Usage Here's an example workflow (so it would go in `.github/workflows/ci.yml` or similar): ```yaml on: pull_request: name: ci jobs: check: name: Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v3.0.2 - uses: ethereum/eipw-action@dist with: token: ${{ secrets.GITHUB_TOKEN }} ``` ## Building & Deploying ```bash npm install # Grab dependencies. npm run build # Compile TypeScript and create bundle. git add . git commit git push # Make the new build available. ```