Use new ChunkGraph Api #49
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: Node.js CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "15" | |
- uses: pnpm/action-setup@v1.2.1 | |
with: | |
version: 5.14.1 | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm test | |
- run: pnpm run build | |
- run: pnpm run check-format | |
- run: pnpm run lint |