feat(ui): airdrop login and code sharing on setup screen #2636
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: pull_request | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'npm' | |
node-version: lts/* | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: check lint/prettier errors | |
run: npm run lint | |
- name: check taplo | |
run: npm run lint:taplo |