Skip to content

Use subsquid aquarium #143

Use subsquid aquarium

Use subsquid aquarium #143

Workflow file for this run

name: Lint squid
on:
pull_request:
paths: ['squid/**/*', '.github/workflows/lint-squid.yaml']
jobs:
extract:
name: eslint
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./squid/
steps:
- uses: actions/checkout@v3
- name: set user
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
# use node module caching
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: install packages
run: npm install
- name: lint
run: npm run lint