feat: add buy with crypto button to ENS detail page #128
Workflow file for this run
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: Lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./webapp | |
steps: | |
- uses: actions/checkout@master | |
- name: Use Node.js 18.x | |
uses: actions/[email protected] | |
with: | |
node-version: 18.x | |
cache: "npm" | |
cache-dependency-path: webapp/package-lock.json | |
- name: Install | |
run: npm install --legacy-peer-deps | |
- name: Lint | |
run: npm run check:code |