fix #583
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 | |
jobs: | |
oneshot: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: PUPPETEER_SKIP_DOWNLOAD=true && pnpm install --frozen-lockfile | |
- name: Build libs | |
run: pnpm run build-libs | |
- name: Lint all | |
run: pnpm lint |