Skip to content

feat: ethernaut lvl 28 solution #98

feat: ethernaut lvl 28 solution

feat: ethernaut lvl 28 solution #98

Workflow file for this run

name: lint
on: push
env:
PNPM_VERSION: '9.9'
NODE_VERSION: '20.11'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
id: install
- name: Run linter
run: pnpm run check
id: lint