Merge pull request #10 from jcam1/fix-hardhat-config #5
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: static checks for root-level directories & files | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
paths: | |
- '.github/**' | |
- 'docs/**' | |
- 'README.md' | |
- 'yarnrc.yml' | |
defaults: | |
run: | |
working-directory: ./ | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Format | |
run: yarn run format:dry-run .github docs README.md yarnrc.yml |