This repository was archived by the owner on Aug 16, 2025. It is now read-only.
added ignore command in the doc (#131) #32
This file contains hidden or 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: Node.js CI | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile --strict-peer-dependencies | |
- run: pnpm run build | |
- run: pnpm run lint |