Skip to content

Commit

Permalink
Add Lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
noisekit committed Sep 8, 2023
1 parent 829c84f commit ebc1541
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Lint

on:
pull_request: {}
push:
branches:
- "test"

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install Foundry (Cannon)
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- run: anvil -V
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "yarn"
- run: yarn --version
- run: yarn install --immutable
- run: yarn dedupe --check
- run: yarn pretty:check

0 comments on commit ebc1541

Please sign in to comment.